:root {
    --primary-main: #1B2A32;
    --primary-light: #2C3E48;
    --primary-dark: #0F191E;
    --primary-contrast: #FFFFFF;
    --secondary-main: #8C7355;
    --secondary-light: #A89073;
    --secondary-dark: #6B553B;
    --secondary-contrast: #FFFFFF;
    --accent-main: #3A6073;
    --accent-subtle: #EBF1F5;
    --accent-warm-sand: #F4EFEA;
    --bg-default: #FAF9F6;
    --bg-paper: #FFFFFF;
    --bg-surface-alt: #F3F0EB;
    --bg-surface-subtle: #F7F5F0;
    --bg-card: #FFFFFF;
    --bg-card-accent: #FDFBF7;
    --text-primary: #141C20;
    --text-secondary: #5A6872;
    --text-muted: #8A97A0;
    --border-subtle: #E7E2D9;
    --border-medium: #D1C9BC;
    --border-strong: #1B2A32;
    --font-headings: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-accent: 'Italiana', 'Cinzel', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--primary-main);
    font-weight: 400;
    letter-spacing: -0.015em;
}

a {
    color: var(--primary-main);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: var(--secondary-main);
}

.text-muted {
    color: #8A97A0 !important;
}

.text-secondary-editorial {
    color: var(--text-secondary);
}

.bg-editorial-paper {
    background-color: var(--bg-paper);
}

.bg-editorial-subtle {
    background-color: var(--bg-surface-subtle);
}

.bg-editorial-alt {
    background-color: var(--bg-surface-alt);
}

.border-editorial-subtle {
    border: 1px solid var(--border-subtle);
}

.border-editorial-medium {
    border: 1px solid var(--border-medium);
}

.btn-editorial-primary {
    background-color: var(--primary-main);
    color: var(--primary-contrast);
    border: 1px solid var(--primary-main);
    padding: 16px 36px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-editorial-primary:hover,
.btn-editorial-primary:focus {
    background-color: var(--secondary-main);
    border-color: var(--secondary-main);
    color: var(--secondary-contrast);
}

.btn-editorial-secondary {
    background-color: transparent;
    color: var(--primary-main);
    border: 1px solid var(--primary-main);
    padding: 16px 36px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-editorial-secondary:hover,
.btn-editorial-secondary:focus {
    background-color: var(--primary-main);
    color: var(--primary-contrast);
}

.editorial-caption {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-main);
}

.editorial-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-subtle);
    border: none;
    margin: 0;
}

/* ===== header ===== */
.kelvin-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background-color: #FAF9F6;
    box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kelvin-header__topbar {
    background-color: #1B2A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kelvin-header__topbar-link {
    color: #D0D9DE;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.kelvin-header__topbar-link:hover,
.kelvin-header__topbar-link:focus {
    color: #FFFFFF;
}

.kelvin-header__icon {
    width: 14px;
    height: 14px;
    color: #8C7355;
    flex-shrink: 0;
}

.kelvin-header__badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__whatsapp-link {
    color: #FFFFFF;
    background-color: #8C7355;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.kelvin-header__whatsapp-link:hover {
    background-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-header__navbar {
    background-color: #FAF9F6;
    border-bottom: 1px solid #E7E2D9;
    padding: 18px 0;
}

.kelvin-header__brand {
    text-decoration: none;
}

.kelvin-header__logo-img {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.kelvin-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.kelvin-header__brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1B2A32;
}

.kelvin-header__brand-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kelvin-header__nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #141C20;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.2s ease;
}

.kelvin-header__nav-link:hover,
.kelvin-header__nav-link:focus {
    color: #8C7355;
}

.kelvin-header__cta-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 12px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kelvin-header__cta-btn:hover,
.kelvin-header__cta-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
    box-shadow: none;
}

.kelvin-header__toggler {
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 6px 10px;
    background-color: transparent;
}

.kelvin-header__toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .kelvin-header__navbar {
        padding: 12px 0;
    }

    .kelvin-header .navbar-collapse {
        background-color: #FAF9F6;
        padding: 20px 16px;
        border-top: 1px solid #E7E2D9;
        margin-top: 12px;
    }

    .kelvin-header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        margin-bottom: 20px !important;
    }

    .kelvin-header__nav-link {
        width: 100%;
        padding: 10px 0 !important;
        font-size: 0.875rem;
        border-bottom: 1px solid #F3F0EB;
    }

    .kelvin-header__cta-wrapper {
        width: 100%;
    }

    .kelvin-header__cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== hero_section ===== */
.kelvin-hero-section {
    position: relative;
    min-height: 88vh;
    padding-top: 140px;
    padding-bottom: 140px;
    overflow: hidden;
    background-color: #1B2A32;
}

.kelvin-hero-section__bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.kelvin-hero-section__overlay {
    background: linear-gradient(135deg, rgba(15, 25, 30, 0.88) 0%, rgba(27, 42, 50, 0.72) 100%);
    z-index: 2;
}

.kelvin-hero-section .container {
    z-index: 3;
}

.kelvin-hero-section__badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #A89073;
    border-left: 2px solid #8C7355;
    padding-left: 12px;
    line-height: 1.4;
}

.kelvin-hero-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #FFFFFF;
    hyphens: auto;
}

.kelvin-hero-section__lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #D0D9DE;
    max-width: 580px;
}

.kelvin-hero-section__btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #8C7355;
    border: 1px solid #8C7355;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-primary:hover,
.kelvin-hero-section__btn-primary:focus {
    background-color: #6B553B;
    border-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-hero-section__btn-outline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #E7E2D9;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-outline:hover,
.kelvin-hero-section__btn-outline:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1B2A32;
}

.kelvin-hero-section__metric-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FAF9F6;
}

.kelvin-hero-section__metric-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #94A3B8;
    text-transform: uppercase;
}

.kelvin-hero-section__divider {
    z-index: 4;
    line-height: 0;
}

@media (max-width: 767.98px) {
    .kelvin-hero-section {
        padding-top: 80px;
        padding-bottom: 90px;
        min-height: auto;
    }

    .kelvin-hero-section__title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .kelvin-hero-section__lead {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .kelvin-hero-section__btn-primary,
    .kelvin-hero-section__btn-outline {
        width: 100%;
        padding: 14px 24px;
    }
}

/* ===== common_mistakes ===== */
.common-mistakes-section {
    background-color: #FAF9F6;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    border-top: 1px solid #E7E2D9;
    border-bottom: 1px solid #E7E2D9;
}

.common-mistakes-section__badge-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #8C7355;
}

.common-mistakes-section__tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8C7355;
}

.common-mistakes-section__title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 400;
    color: #1B2A32;
    letter-spacing: -0.01em;
}

.common-mistakes-section__intro-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #5A6872;
    font-weight: 400;
}

.common-mistakes-section__nav-tabs {
    border-bottom: 1px solid #E7E2D9;
    padding-bottom: 8px;
}

.common-mistakes-section__tab-btn {
    background: #FFFFFF;
    color: #5A6872;
    border: 1px solid #E7E2D9;
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0px;
    transition: all 0.2s ease-in-out;
    outline: none;
}

.common-mistakes-section__tab-btn:hover {
    color: #1B2A32;
    border-color: #8C7355;
    background-color: #FAF9F6;
}

.common-mistakes-section__tab-btn.active {
    background-color: #1B2A32;
    color: #FFFFFF;
    border-color: #1B2A32;
}

.common-mistakes-section__card {
    background: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 36px 30px;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(27, 42, 50, 0.03);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.common-mistakes-section__card:hover {
    border-color: #8C7355;
    box-shadow: 0 12px 32px rgba(27, 42, 50, 0.06);
}

.common-mistakes-section__card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid #F3F0EB;
    padding-bottom: 12px;
}

.common-mistakes-section__card-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    line-height: 1;
    color: #8C7355;
    font-weight: 400;
}

.common-mistakes-section__card-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8A97A0;
    font-weight: 600;
}

.common-mistakes-section__card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 500;
    color: #1B2A32;
    margin-bottom: 12px;
}

.common-mistakes-section__card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 24px;
}

.common-mistakes-section__card-impact {
    border-top: 1px dashed #E7E2D9;
    padding-top: 18px;
}

.common-mistakes-section__cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.common-mistakes-section__cost-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #141C20;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.common-mistakes-section__cost-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #A83232;
    font-variant-numeric: tabular-nums;
}

.common-mistakes-section__loss-metric {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #6B553B;
    margin-bottom: 16px;
    background-color: #FDFBF7;
    padding: 8px 12px;
    border-left: 2px solid #8C7355;
}

.common-mistakes-section__loss-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #8C7355;
    margin-top: 2px;
}

.common-mistakes-section__solution-box {
    background-color: #FAF9F6;
    border: 1px solid #E7E2D9;
    padding: 14px;
}

.common-mistakes-section__solution-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3A6073;
    margin-bottom: 4px;
}

.common-mistakes-section__solution-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #141C20;
}

.common-mistakes-section__bottom-panel {
    background-color: #1B2A32;
    border: 1px solid #1B2A32;
    color: #FFFFFF;
}

.common-mistakes-section__panel-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A89073;
}

.common-mistakes-section__panel-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    line-height: 1.25;
    color: #FFFFFF;
    font-weight: 400;
}

.common-mistakes-section__panel-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #D0D9DE;
}

.common-mistakes-section__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8C7355;
    color: #FFFFFF;
    border: 1px solid #8C7355;
    padding: 16px 36px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    text-align: center;
}

.common-mistakes-section__cta-btn:hover {
    background-color: #6B553B;
    border-color: #6B553B;
    color: #FFFFFF;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .common-mistakes-section__title {
        font-size: 16px;
        hyphens: auto;
    }

    .common-mistakes-section__card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .common-mistakes-section__panel-heading {
        font-size: 14px;
        hyphens: auto;
    }

    .common-mistakes-section__card {
        padding: 24px 18px;
    }

    .common-mistakes-section__tab-btn {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .common-mistakes-section__cta-btn {
        width: 100%;
    }
}

/* ===== technologies_we_use ===== */
.kelvin-tech-section {
    background-color: #FAF9F6;
    color: #141C20;
    border-top: 1px solid #E7E2D9;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-tech-section .kelvin-tech-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kelvin-tech-section .kelvin-tech-badge-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #8C7355;
    line-height: 1;
}

.kelvin-tech-section .kelvin-tech-badge-line {
    width: 32px;
    height: 1px;
    background-color: #8C7355;
    display: inline-block;
}

.kelvin-tech-section .kelvin-tech-badge-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8C7355;
}

.kelvin-tech-section .kelvin-tech-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: #1B2A32;
    margin-bottom: 0;
}

.kelvin-tech-section .kelvin-tech-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #5A6872;
    max-width: 380px;
}

.kelvin-tech-section .kelvin-tech-filters {
    border-bottom: 1px solid #E7E2D9;
    padding-bottom: 16px;
}

.kelvin-tech-section .kelvin-tech-btn {
    background: #FFFFFF;
    color: #1B2A32;
    border: 1px solid #E7E2D9;
    padding: 10px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.kelvin-tech-section .kelvin-tech-btn:hover {
    background-color: #F3F0EB;
    border-color: #8C7355;
    color: #1B2A32;
}

.kelvin-tech-section .kelvin-tech-btn.active {
    background-color: #1B2A32;
    border-color: #1B2A32;
    color: #FFFFFF;
}

.kelvin-tech-section .kelvin-tech-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
}

.kelvin-tech-section .kelvin-tech-card:hover {
    border-color: #8C7355;
}

.kelvin-tech-section .kelvin-tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.kelvin-tech-section .kelvin-tech-icon-wrap {
    width: 44px;
    height: 44px;
    background-color: #F7F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E7E2D9;
}

.kelvin-tech-section .kelvin-tech-icon {
    width: 22px;
    height: 22px;
    color: #1B2A32;
}

.kelvin-tech-section .kelvin-tech-code {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #8C7355;
}

.kelvin-tech-section .kelvin-tech-card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1B2A32;
    margin-bottom: 12px;
}

.kelvin-tech-section .kelvin-tech-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 24px;
    flex-grow: 1;
}

.kelvin-tech-section .kelvin-tech-specs {
    border-top: 1px solid #F3F0EB;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kelvin-tech-section .kelvin-tech-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.kelvin-tech-section .kelvin-tech-spec-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8A97A0;
    font-weight: 400;
}

.kelvin-tech-section .kelvin-tech-spec-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1B2A32;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .kelvin-tech-section .kelvin-tech-heading {
        font-size: 1.85rem;
    }

    .kelvin-tech-section .kelvin-tech-card {
        padding: 28px 20px;
    }
}

/* ===== interactive_tour ===== */
.interactive-tour-block {
    background-color: #FAF9F6;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.interactive-tour-block .tour-badge {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #8C7355;
    background-color: #F4EFEA;
    padding: 6px 14px;
    border: 1px solid #E7E2D9;
}

.interactive-tour-block .tour-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    color: #1B2A32;
}

.interactive-tour-block .tour-intro {
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.65;
    color: #5A6872;
}

.interactive-tour-block .steps-navigation {
    background: #FFFFFF;
    border: 1px solid #E7E2D9;
}

.interactive-tour-block .steps-sidebar-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1B2A32;
    font-weight: 600;
}

.interactive-tour-block .step-tab-btn {
    background: #FAF9F6;
    border: 1px solid #E7E2D9;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    border-radius: 0;
}

.interactive-tour-block .step-tab-btn:hover {
    background: #F3F0EB;
    border-color: #D1C9BC;
}

.interactive-tour-block .step-tab-btn.is-active {
    background: #1B2A32;
    border-color: #1B2A32;
    color: #FFFFFF;
}

.interactive-tour-block .step-tab-btn .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #8C7355;
    line-height: 1.2;
}

.interactive-tour-block .step-tab-btn.is-active .step-num {
    color: #A89073;
}

.interactive-tour-block .step-tab-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1B2A32;
}

.interactive-tour-block .step-tab-btn.is-active .step-tab-name {
    color: #FFFFFF;
}

.interactive-tour-block .step-tab-desc {
    font-size: 0.75rem;
    color: #5A6872;
    line-height: 1.3;
    margin-top: 2px;
}

.interactive-tour-block .step-tab-btn.is-active .step-tab-desc {
    color: #D0D9DE;
}

.interactive-tour-block .step-summary .summary-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #8A97A0;
    font-weight: 600;
}

.interactive-tour-block .step-summary .summary-value {
    font-size: 0.875rem;
    color: #1B2A32;
    margin-top: 4px;
}

.interactive-tour-block .interactive-stage-panel {
    background: #FFFFFF;
    border: 1px solid #E7E2D9;
}

.interactive-tour-block .stage-view {
    display: flex;
    flex-direction: column;
}

.interactive-tour-block .stage-view.is-hidden {
    display: none;
}

.interactive-tour-block .stage-step-tag {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-weight: 600;
}

.interactive-tour-block .stage-status-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3A6073;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.interactive-tour-block .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2e7d32;
    display: inline-block;
}

.interactive-tour-block .stage-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1B2A32;
    font-weight: 500;
}

.interactive-tour-block .stage-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5A6872;
}

.interactive-tour-block .interactive-widget-box {
    background: #FDFBF7;
    border: 1px solid #E7E2D9;
}

.interactive-tour-block .metric-card {
    background: #FFFFFF;
    border: 1px solid #E7E2D9;
}

.interactive-tour-block .metric-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5A6872;
    font-weight: 600;
    margin-bottom: 4px;
}

.interactive-tour-block .metric-val {
    font-size: 2rem;
    font-weight: 700;
    color: #1B2A32;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.interactive-tour-block .metric-val-sm {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B2A32;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    margin: 6px 0;
}

.interactive-tour-block .metric-unit {
    font-size: 0.9rem;
    color: #8C7355;
    font-weight: 600;
}

.interactive-tour-block .metric-unit-tag {
    font-size: 0.75rem;
    color: #5A6872;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.interactive-tour-block .slider-label {
    font-size: 0.7rem;
    color: #8A97A0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.interactive-tour-block .metric-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2e7d32;
}

.interactive-tour-block .form-range {
    accent-color: #8C7355;
}

.interactive-tour-block .refrigerant-selector .mode-btn {
    background: #FAF9F6;
    border: 1px solid #D1C9BC;
    color: #1B2A32;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 0;
}

.interactive-tour-block .refrigerant-selector .mode-btn:hover {
    background: #EBF1F5;
}

.interactive-tour-block .refrigerant-selector .mode-btn.is-active {
    background: #1B2A32;
    color: #FFFFFF;
    border-color: #1B2A32;
}

.interactive-tour-block .stage-explanation .explanation-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8C7355;
    font-weight: 600;
}

.interactive-tour-block .stage-explanation .explanation-text {
    font-size: 0.875rem;
    color: #5A6872;
    line-height: 1.5;
}

.interactive-tour-block .tour-nav-btn {
    background: #FAF9F6;
    border: 1px solid #1B2A32;
    color: #1B2A32;
    padding: 10px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 0;
}

.interactive-tour-block .tour-nav-btn:hover {
    background: #1B2A32;
    color: #FFFFFF;
}

.interactive-tour-block .tour-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.interactive-tour-block .tour-cta-btn {
    background: #1B2A32;
    border: 1px solid #1B2A32;
    color: #FFFFFF;
    padding: 12px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
}

.interactive-tour-block .tour-cta-btn:hover {
    background: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .interactive-tour-block .tour-heading {
        font-size: 1.75rem;
        hyphens: auto;
    }

    .interactive-tour-block .stage-title {
        font-size: 1.35rem;
        hyphens: auto;
    }

    .interactive-tour-block .interactive-stage-panel {
        padding: 20px 16px;
    }

    .interactive-tour-block .steps-navigation {
        padding: 20px 16px;
    }
}

/* ===== our_services ===== */
.services-editorial-section {
    background-color: #FAF9F6;
    position: relative;
    overflow: hidden
}

.services-editorial-section .services-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8C7355;
    line-height: 1.4
}

.services-editorial-section .services-main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1B2A32
}

.services-editorial-section .services-view-all-btn {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1B2A32;
    background-color: transparent;
    border: 1px solid #1B2A32;
    padding: 12px 28px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease
}

.services-editorial-section .services-view-all-btn:hover {
    background-color: #1B2A32;
    color: #FFFFFF;
    border-color: #1B2A32
}

.services-editorial-section .service-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 28px 24px;
    position: relative
}

.services-editorial-section .service-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #8C7355;
    line-height: 1;
    margin-bottom: 16px
}

.services-editorial-section .service-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #F3F0EB;
    margin-bottom: 20px
}

.services-editorial-section .service-card-img-link {
    display: block;
    width: 100%;
    height: 100%
}

.services-editorial-section .service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.services-editorial-section .service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1B2A32
}

.services-editorial-section .service-title-link {
    color: #1B2A32;
    text-decoration: none
}

.services-editorial-section .service-title-link:hover {
    color: #8C7355
}

.services-editorial-section .service-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 24px
}

.services-editorial-section .service-action-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #1B2A32;
    border: 1px solid #1B2A32;
    padding: 12px 16px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease
}

.services-editorial-section .service-action-btn:hover {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF
}

@media(max-width:767.98px) {
    .services-editorial-section .services-main-heading {
        font-size: 16px;
        line-height: 1.3;
        hyphens: auto
    }

    .services-editorial-section .service-card-title {
        font-size: 14px;
        line-height: 1.3;
        hyphens: auto
    }

    .services-editorial-section .service-card {
        padding: 20px 16px
    }
}

/* ===== our_solutions ===== */
.solutions-grid-section {
    background-color: #FAF9F6;
    position: relative;
    overflow: hidden
}

.solutions-grid-section .solutions-grid-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #8C7355
}

.solutions-grid-section .solutions-grid-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1B2A32;
    margin-bottom: 0
}

.solutions-grid-section .solutions-grid-divider {
    width: 48px;
    height: 2px;
    background-color: #8C7355
}

.solutions-grid-section .solutions-grid-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    color: #5A6872;
    max-width: 680px
}

.solutions-grid-section .solution-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    height: 100%;
    display: flex;
    flex-direction: column
}

.solutions-grid-section .solution-card-media {
    position: relative;
    overflow: hidden;
    background-color: #F3F0EB
}

.solutions-grid-section .solution-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.solutions-grid-section .solution-card-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.solutions-grid-section .solution-card-meta {
    display: flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8C7355;
    margin-bottom: 12px
}

.solutions-grid-section .solution-card-meta-dot {
    width: 4px;
    height: 4px;
    background-color: #8C7355;
    margin: 0 10px;
    display: inline-block
}

.solutions-grid-section .solution-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1B2A32;
    margin-bottom: 12px
}

.solutions-grid-section .solution-title-link {
    color: #1B2A32;
    text-decoration: none
}

.solutions-grid-section .solution-title-link:hover {
    color: #8C7355
}

.solutions-grid-section .solution-card-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 400;
    color: #5A6872;
    margin-bottom: 24px;
    flex-grow: 1
}

.solutions-grid-section .solution-card-action {
    margin-top: auto
}

.solutions-grid-section .btn-solution-action {
    display: inline-block;
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    padding: 14px 28px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-decoration: none;
    text-align: center
}

.solutions-grid-section .btn-solution-action:hover {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF
}

@media (max-width:767.98px) {
    .solutions-grid-section .solutions-grid-heading {
        font-size: 1.625rem
    }

    .solutions-grid-section .solution-card-title {
        font-size: 1.375rem
    }

    .solutions-grid-section .solution-card-body {
        padding: 24px 20px
    }

    .solutions-grid-section .solution-card-image {
        height: 200px
    }

    .solutions-grid-section .btn-solution-action {
        width: 100%
    }
}

/* ===== latest_blog_posts ===== */
.kelvin-blog-section {
    background-color: #FAF9F6;
    position: relative;
    overflow: hidden
}

.kelvin-blog-section__eyebrow {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8C7355
}

.kelvin-blog-section__title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #141C20
}

.kelvin-blog-section__counter {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #5A6872;
    text-transform: uppercase;
    border: 1px solid #E7E2D9;
    padding: 6px 14px;
    background-color: #FFFFFF;
    display: inline-block
}

.kelvin-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    border-radius: 0;
    transition: border-color .2s ease, box-shadow .2s ease
}

.kelvin-blog-card:hover {
    border-color: #D1C9BC;
    box-shadow: 0 12px 32px rgba(27, 42, 50, 0.06)
}

.kelvin-blog-card__media {
    position: relative;
    overflow: hidden;
    background-color: #F3F0EB
}

.kelvin-blog-card__media-link {
    display: block
}

.kelvin-blog-card__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.kelvin-blog-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #1B2A32;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px
}

.kelvin-blog-card__content {
    padding: 28px 24px
}

.kelvin-blog-card__meta {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #5A6872;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.kelvin-blog-card__divider {
    color: #8A97A0
}

.kelvin-blog-card__title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 500;
    color: #141C20
}

.kelvin-blog-card__title-link {
    color: #141C20;
    text-decoration: none;
    transition: color .2s ease
}

.kelvin-blog-card__title-link:hover {
    color: #8C7355
}

.kelvin-blog-card__excerpt {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 400;
    color: #5A6872
}

.kelvin-blog-card__footer {
    border-top: 1px solid #E7E2D9;
    padding-top: 18px
}

.kelvin-blog-card__cta {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1B2A32;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #8C7355;
    padding-bottom: 4px;
    transition: color .2s ease, border-color .2s ease
}

.kelvin-blog-card__cta:hover {
    color: #8C7355;
    border-color: #1B2A32
}

.kelvin-blog-card__icon {
    display: inline-block;
    vertical-align: middle
}

@media(max-width:767.98px) {
    .kelvin-blog-section__title {
        font-size: 16px;
        hyphens: auto
    }

    .kelvin-blog-card__title {
        font-size: 14px;
        hyphens: auto
    }

    .kelvin-blog-card__img {
        height: 200px
    }

    .kelvin-blog-card__content {
        padding: 20px 16px
    }
}

/* ===== footer ===== */
.kelvin-editorial-footer {
    background-color: #FAF9F6;
    border-top: 1px solid #E7E2D9;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.kelvin-editorial-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-editorial-footer__brand-block {
    max-width: 320px;
}

.kelvin-editorial-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.kelvin-editorial-footer__logo-img {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.kelvin-editorial-footer__brand-name {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A32;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 0;
    hyphens: auto;
}

.kelvin-editorial-footer__heading {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1B2A32;
    margin-bottom: 1.5rem;
}

.kelvin-editorial-footer__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kelvin-editorial-footer__nav-list li {
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__link {
    color: #5A6872;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.kelvin-editorial-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kelvin-editorial-footer__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    stroke: #8C7355;
    margin-top: 0.1875rem;
}

.kelvin-editorial-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A6872;
    hyphens: auto;
}

.kelvin-editorial-footer__contact-link {
    font-size: 0.875rem;
    color: #1B2A32;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__contact-link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__bottom {
    padding-top: 2rem;
}

.kelvin-editorial-footer__copyright {
    font-size: 0.8125rem;
    color: #8A97A0;
    font-weight: 400;
}

.kelvin-editorial-footer__scroll-top {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.kelvin-editorial-footer__scroll-top:hover {
    background-color: #8C7355;
    border-color: #8C7355;
}

.kelvin-editorial-footer__scroll-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.kelvin-editorial-footer__scroll-icon {
    width: 0.875rem;
    height: 0.875rem;
    stroke: #FFFFFF;
}

@media (max-width: 767.98px) {
    .kelvin-editorial-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .kelvin-editorial-footer__heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .kelvin-editorial-footer__bottom {
        padding-top: 1.5rem;
    }

    .kelvin-editorial-footer__scroll-top {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PAGE: services ===== */
.kelvin-services-catalog {
  background-color: #FAF9F6;
  color: #141C20;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.kelvin-services-catalog .kelvin-section-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #8C7355;
  text-transform: uppercase;
}

.kelvin-services-catalog .kelvin-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  color: #1B2A32;
  letter-spacing: -0.01em;
}

.kelvin-services-catalog .kelvin-section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #5A6872;
  font-weight: 400;
}

.kelvin-services-catalog .kelvin-service-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E2D9;
  border-radius: 0;
  box-shadow: none;
}

.kelvin-services-catalog .kelvin-card-media {
  position: relative;
  overflow: hidden;
  background-color: #EBF1F5;
}

.kelvin-services-catalog .kelvin-card-img-link {
  display: block;
  width: 100%;
}

.kelvin-services-catalog .kelvin-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.kelvin-services-catalog .kelvin-card-index {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #1B2A32;
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

.kelvin-services-catalog .kelvin-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.25;
  color: #1B2A32;
}

.kelvin-services-catalog .kelvin-title-link {
  color: #1B2A32;
  text-decoration: none;
}

.kelvin-services-catalog .kelvin-title-link:hover {
  color: #8C7355;
}

.kelvin-services-catalog .kelvin-card-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #5A6872;
}

.kelvin-services-catalog .kelvin-link-arrow {
  color: #1B2A32;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #8C7355;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
}

.kelvin-services-catalog .kelvin-link-arrow:hover {
  color: #8C7355;
  border-bottom-color: #1B2A32;
}

.kelvin-services-catalog .kelvin-btn-primary {
  background-color: #1B2A32;
  color: #FFFFFF;
  border: 1px solid #1B2A32;
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.kelvin-services-catalog .kelvin-btn-primary:hover {
  background-color: #8C7355;
  border-color: #8C7355;
  color: #FFFFFF;
}

.kelvin-services-catalog .kelvin-btn-secondary {
  background-color: transparent;
  color: #1B2A32;
  border: 1px solid #1B2A32;
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.kelvin-services-catalog .kelvin-btn-secondary:hover {
  background-color: #1B2A32;
  color: #FFFFFF;
}

.kelvin-services-catalog .kelvin-btn-sm {
  background-color: #F3F0EB;
  color: #1B2A32;
  border: 1px solid #D1C9BC;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
}

.kelvin-services-catalog .kelvin-btn-sm:hover {
  background-color: #1B2A32;
  color: #FFFFFF;
  border-color: #1B2A32;
}

.kelvin-services-catalog .kelvin-inquiry-box {
  background-color: #FFFFFF;
  border: 1px solid #E7E2D9;
  border-left: 4px solid #8C7355;
}

.kelvin-services-catalog .kelvin-inquiry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #1B2A32;
  line-height: 1.2;
}

.kelvin-services-catalog .kelvin-inquiry-text {
  font-size: 0.95rem;
  color: #5A6872;
  line-height: 1.6;
}

.kelvin-services-catalog .kelvin-selected-badge {
  background-color: #FDFBF7;
  border: 1px solid #E7E2D9;
}

.kelvin-services-catalog .kelvin-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #8C7355;
  font-weight: 700;
}

.kelvin-services-catalog .kelvin-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #1B2A32;
  font-weight: 600;
}

.kelvin-services-catalog .kelvin-form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #1B2A32;
  margin-bottom: 6px;
  display: block;
}

.kelvin-services-catalog .kelvin-form-input,
.kelvin-services-catalog .kelvin-form-textarea {
  background-color: #FAF9F6;
  border: 1px solid #D1C9BC;
  border-radius: 0;
  color: #141C20;
  padding: 10px 14px;
  font-size: 0.875rem;
}

.kelvin-services-catalog .kelvin-form-input:focus,
.kelvin-services-catalog .kelvin-form-textarea:focus {
  background-color: #FFFFFF;
  border-color: #1B2A32;
  box-shadow: none;
  color: #141C20;
}

.kelvin-services-catalog .kelvin-form-input::placeholder,
.kelvin-services-catalog .kelvin-form-textarea::placeholder {
  color: #8A97A0;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .kelvin-services-catalog .kelvin-section-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .kelvin-services-catalog .kelvin-inquiry-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .kelvin-services-catalog .kelvin-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .kelvin-services-catalog .kelvin-card-img {
    height: 190px;
  }
}

/* ===== PAGE: solutions ===== */
.kelvin-solutions-page {
  background-color: #FAF9F6;
  color: #141C20;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.kelvin-solutions-page__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8C7355;
}

.kelvin-solutions-page__main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.18;
  color: #1B2A32;
  letter-spacing: -0.01em;
}

.kelvin-solutions-page__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  color: #5A6872;
}

.kelvin-solutions-page__card {
  background-color: #FFFFFF;
  border: 1px solid #E7E2D9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kelvin-solutions-page__card:hover {
  border-color: #8C7355;
  box-shadow: 0 12px 32px rgba(27, 42, 50, 0.06);
}

.kelvin-solutions-page__image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #F3F0EB;
}

.kelvin-solutions-page__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kelvin-solutions-page__card:hover .kelvin-solutions-page__img {
  transform: scale(1.03);
}

.kelvin-solutions-page__index {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1B2A32;
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

.kelvin-solutions-page__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.25;
}

.kelvin-solutions-page__card-title a {
  color: #1B2A32;
  transition: color 0.2s ease;
}

.kelvin-solutions-page__card-title a:hover {
  color: #8C7355;
}

.kelvin-solutions-page__card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5A6872;
}

.kelvin-solutions-page__link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1B2A32;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kelvin-solutions-page__link:hover {
  color: #8C7355;
}

.kelvin-solutions-page__btn-select {
  background-color: transparent;
  color: #1B2A32;
  border: 1px solid #1B2A32;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.kelvin-solutions-page__btn-select:hover {
  background-color: #1B2A32;
  color: #FFFFFF;
}

.kelvin-solutions-page__form-section {
  border-top: 1px solid #E7E2D9;
}

.kelvin-solutions-page__form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  color: #1B2A32;
}

.kelvin-solutions-page__form-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #5A6872;
}

.kelvin-solutions-page__selected-preview {
  background-color: #FDFBF7;
  border-color: #E7E2D9 !important;
}

.kelvin-solutions-page__form-card {
  background-color: #FFFFFF;
  border-color: #E7E2D9 !important;
}

.kelvin-solutions-page__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #141C20;
  margin-bottom: 0.35rem;
}

.kelvin-solutions-page__input,
.kelvin-solutions-page__select,
.kelvin-solutions-page__textarea {
  border: 1px solid #D1C9BC;
  border-radius: 0;
  padding: 12px 14px;
  font-size: 0.9375rem;
  background-color: #FFFFFF;
  color: #141C20;
}

.kelvin-solutions-page__input:focus,
.kelvin-solutions-page__select:focus,
.kelvin-solutions-page__textarea:focus {
  border-color: #1B2A32;
  box-shadow: none;
  background-color: #FFFFFF;
  color: #141C20;
}

.kelvin-solutions-page__input::placeholder,
.kelvin-solutions-page__textarea::placeholder {
  color: #8A97A0;
  opacity: 1;
}

.kelvin-solutions-page__btn-submit {
  background-color: #1B2A32;
  color: #FFFFFF;
  border: 1px solid #1B2A32;
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kelvin-solutions-page__btn-submit:hover {
  background-color: #8C7355;
  border-color: #8C7355;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .kelvin-solutions-page__main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .kelvin-solutions-page__card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .kelvin-solutions-page__form-heading {
    font-size: 1rem;
    hyphens: auto;
  }
}

/* ===== PAGE: blog ===== */
.editorial-blog-section { background-color: #FAF9F6; color: #141C20; font-family: 'Plus Jakarta Sans', sans-serif; }
.editorial-blog-section .editorial-pretitle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: #8C7355; }
.editorial-blog-section .editorial-main-heading { font-family: 'Cormorant Garamond', serif; font-weight: 500; color: #1B2A32; letter-spacing: -0.015em; line-height: 1.15; }
.editorial-blog-section .editorial-intro-text { color: #5A6872; max-width: 780px; font-weight: 300; font-size: 1.125rem; line-height: 1.7; }
.editorial-blog-section .editorial-divider { width: 48px; height: 2px; background-color: #8C7355; }
.editorial-blog-section .editorial-post-card { background-color: #FFFFFF; border: 1px solid #E7E2D9; border-radius: 0; box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.editorial-blog-section .editorial-post-card:hover { border-color: #8C7355; box-shadow: 0 12px 32px rgba(27, 42, 50, 0.06); }
.editorial-blog-section .editorial-card-media { background-color: #F3F0EB; overflow: hidden; }
.editorial-blog-section .editorial-img { height: 260px; object-fit: cover; transition: transform 0.3s ease; }
.editorial-blog-section .editorial-post-card:hover .editorial-img { transform: scale(1.02); }
.editorial-blog-section .editorial-badge { position: absolute; top: 16px; left: 16px; background-color: #1B2A32; color: #FFFFFF; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; padding: 6px 12px; border-radius: 0; }
.editorial-blog-section .editorial-meta { font-size: 0.8125rem; color: #8A97A0; }
.editorial-blog-section .meta-author { font-weight: 500; color: #1B2A32; }
.editorial-blog-section .editorial-post-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: #1B2A32; line-height: 1.25; }
.editorial-blog-section .editorial-post-title a { color: #1B2A32; transition: color 0.2s ease; }
.editorial-blog-section .editorial-post-title a:hover { color: #8C7355; }
.editorial-blog-section .editorial-post-summary { font-size: 0.9375rem; line-height: 1.6; color: #5A6872; }
.editorial-blog-section .editorial-card-footer { border-color: #E7E2D9 !important; }
.editorial-blog-section .editorial-read-link { color: #1B2A32; font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid #8C7355; padding-bottom: 2px; transition: color 0.2s ease, border-color 0.2s ease; }
.editorial-blog-section .editorial-read-link:hover { color: #8C7355; border-bottom-color: #1B2A32; }
@media (max-width: 767.98px) {
  .editorial-blog-section .editorial-main-heading { font-size: 1.75rem; }
  .editorial-blog-section .editorial-post-title { font-size: 1.35rem; }
  .editorial-blog-section .editorial-img { height: 210px; }
}

/* ===== PAGE: contact ===== */
.editorial-contact-section { background-color: #FAF9F6; color: #141C20; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }
.editorial-contact-section .editorial-badge { font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 600; color: #8C7355; }
.editorial-contact-section .editorial-heading { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: 2.5rem; line-height: 1.15; font-weight: 400; color: #1B2A32; }
@media (max-width: 767.98px) { .editorial-contact-section .editorial-heading { font-size: 18px; hyphens: auto; } }
.editorial-contact-section .editorial-lead-text { font-size: 1rem; line-height: 1.65; color: #5A6872; font-weight: 300; }
.editorial-contact-section .editorial-contact-info { background-color: #F3F0EB; border: 1px solid #E7E2D9; }
.editorial-contact-section .detail-label { font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 600; color: #8C7355; }
.editorial-contact-section .detail-value { font-size: 0.95rem; line-height: 1.5; color: #1B2A32; font-weight: 500; word-break: break-word; }
.editorial-contact-section .contact-link { color: #1B2A32; text-decoration: none; border-bottom: 1px solid #8C7355; padding-bottom: 2px; }
.editorial-contact-section .contact-link:hover { color: #8C7355; border-bottom-color: #1B2A32; }
.editorial-contact-section .contact-whatsapp-link { color: #1B2A32; text-decoration: none; font-weight: 600; border-bottom: 1px solid #8C7355; padding-bottom: 2px; }
.editorial-contact-section .contact-whatsapp-link:hover { color: #8C7355; }
.editorial-contact-section .contact-svg-icon { width: 18px; height: 18px; }
.editorial-contact-section .editorial-contact-form-card { background-color: #FFFFFF; border: 1px solid #E7E2D9; }
.editorial-contact-section .form-card-title { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: 1.85rem; font-weight: 500; color: #1B2A32; }
@media (max-width: 767.98px) { .editorial-contact-section .form-card-title { font-size: 16px; hyphens: auto; } }
.editorial-contact-section .form-card-desc { font-size: 0.9rem; color: #5A6872; line-height: 1.5; }
.editorial-contact-section .form-label { font-size: 0.72rem; letter-spacing: 0.1em; font-weight: 600; color: #1B2A32; margin-bottom: 6px; }
.editorial-contact-section .form-control-editorial { border-radius: 0; background-color: #FAF9F6; border: 1px solid #D1C9BC; color: #141C20; padding: 12px 14px; font-size: 0.9rem; }
.editorial-contact-section .form-control-editorial:focus { background-color: #FFFFFF; border-color: #1B2A32; box-shadow: none; color: #141C20; outline: none; }
.editorial-contact-section .form-control-editorial::placeholder { color: #8A97A0; opacity: 1; }
.editorial-contact-section .form-check-input { border-radius: 0; border: 1px solid #D1C9BC; }
.editorial-contact-section .form-check-input:checked { background-color: #1B2A32; border-color: #1B2A32; }
.editorial-contact-section .form-check-label { color: #5A6872; line-height: 1.4; }
.editorial-contact-section .btn-editorial-submit { border-radius: 0; background-color: #1B2A32; color: #FFFFFF; border: 1px solid #1B2A32; padding: 14px 32px; font-size: 0.75rem; letter-spacing: 0.18em; font-weight: 600; text-transform: uppercase; }
.editorial-contact-section .btn-editorial-submit:hover { background-color: #8C7355; border-color: #8C7355; color: #FFFFFF; }

/* ===== PAGE: privacy ===== */
.privacy-editorial-section { background-color: #FAF9F6; font-family: 'Plus Jakarta Sans', sans-serif; color: #141C20; } .privacy-editorial-section .privacy-policy-card { background-color: #FFFFFF; border: 1px solid #E7E2D9; padding: 40px; } @media (min-width: 768px) { .privacy-editorial-section .privacy-policy-card { padding: 64px 56px; } } .privacy-editorial-section .privacy-badge { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: #8C7355; } .privacy-editorial-section .privacy-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.75rem; font-weight: 400; line-height: 1.15; color: #1B2A32; letter-spacing: -0.015em; } @media (max-width: 767.98px) { .privacy-editorial-section .privacy-main-title { font-size: 18px; hyphens: auto; } } .privacy-editorial-section .privacy-meta { font-size: 0.875rem; color: #8A97A0; } .privacy-editorial-section .privacy-section { position: relative; } .privacy-editorial-section .section-number { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: #8C7355; margin-bottom: 0.25rem; } .privacy-editorial-section .privacy-section-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.875rem; font-weight: 500; color: #1B2A32; line-height: 1.25; } @media (max-width: 767.98px) { .privacy-editorial-section .privacy-section-heading { font-size: 16px; hyphens: auto; } } .privacy-editorial-section h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 600; color: #1B2A32; } @media (max-width: 767.98px) { .privacy-editorial-section h3 { font-size: 14px; } } .privacy-editorial-section p { line-height: 1.7; color: #5A6872; } .privacy-editorial-section .lead { font-size: 1.125rem; line-height: 1.75; color: #2C3E48; font-weight: 300; } .privacy-editorial-section .privacy-list { list-style-type: disc; padding-left: 1.25rem; color: #5A6872; line-height: 1.7; } .privacy-editorial-section .privacy-list li { margin-bottom: 0.5rem; } .privacy-editorial-section .privacy-sub-card { background-color: #FDFBF7; border: 1px solid #E7E2D9; padding: 24px 20px; height: 100%; } .privacy-editorial-section .privacy-rights-box { background-color: #FAF9F6; border-left: 3px solid #8C7355; border-top: 1px solid #E7E2D9; border-right: 1px solid #E7E2D9; border-bottom: 1px solid #E7E2D9; color: #5A6872; } .privacy-editorial-section .privacy-contact-card { background-color: #FDFBF7; border: 1px solid #E7E2D9; } .privacy-editorial-section .privacy-action-link { display: inline-flex; align-items: center; color: #1B2A32; font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.05em; text-decoration: none; border-bottom: 1px solid #8C7355; padding-bottom: 2px; } .privacy-editorial-section .privacy-action-link:hover { color: #8C7355; border-bottom-color: #1B2A32; }

/* ===== PAGE: terms ===== */
.terms-content-section{background-color:#FAF9F6;min-height:600px;font-family:'Plus Jakarta Sans',sans-serif}.terms-content-section .terms-header-block{border-color:#E7E2D9!important}.terms-content-section .terms-eyebrow{font-size:0.75rem;letter-spacing:0.18em;color:#8C7355}.terms-content-section .terms-main-title{font-family:'Cormorant Garamond',serif;color:#141C20;letter-spacing:-0.01em}.terms-content-section .terms-sidebar{top:100px;z-index:10}.terms-content-section .terms-nav-box{background:#FFFFFF;border:1px solid #E7E2D9}.terms-content-section .terms-nav-link{display:flex;align-items:center;padding:8px 12px;font-size:0.875rem;color:#5A6872;text-decoration:none;transition:all 0.2s ease;border-left:2px solid transparent}.terms-content-section .terms-nav-link:hover{color:#1B2A32;background-color:#F7F5F0;border-left-color:#8C7355}.terms-content-section .terms-nav-link.active{color:#1B2A32;font-weight:600;background-color:#F3F0EB;border-left-color:#1B2A32}.terms-content-section .terms-nav-num{font-family:'Cormorant Garamond',serif;font-size:0.95rem;color:#8C7355;font-weight:600}.terms-content-section .terms-section-index{font-family:'Cormorant Garamond',serif;font-size:2rem;line-height:1;color:#8C7355;font-weight:300}.terms-content-section .terms-article-block{background:#FFFFFF;border:1px solid #E7E2D9;padding:40px 36px}.terms-content-section .terms-article-block h2{font-family:'Cormorant Garamond',serif;color:#141C20}.terms-content-section .terms-article-block h3{font-family:'Plus Jakarta Sans',sans-serif;color:#141C20}.terms-content-section .terms-highlight-card{background-color:#FDFBF7;border-left:3px solid #8C7355;border-top:1px solid #E7E2D9;border-right:1px solid #E7E2D9;border-bottom:1px solid #E7E2D9}.terms-content-section .terms-sub-card{background:#FAF9F6;border:1px solid #E7E2D9;height:100%}.terms-content-section .terms-bullet-list{line-height:1.7}.terms-content-section .terms-bullet-list li{margin-bottom:8px}.terms-content-section .terms-contact-panel{background-color:#F3F0EB;border:1px solid #D1C9BC}.terms-content-section .terms-btn{background-color:#1B2A32!important;color:#FFFFFF!important;border:1px solid #1B2A32;padding:12px 24px;font-size:0.75rem;letter-spacing:0.15em;font-weight:600;border-radius:0;box-shadow:none;transition:background-color 0.2s ease,border-color 0.2s ease}.terms-content-section .terms-btn:hover{background-color:#8C7355!important;border-color:#8C7355!important;color:#FFFFFF!important}.terms-content-section .form-control{background-color:#FAF9F6;border:1px solid #E7E2D9;border-radius:0;font-size:0.8125rem;color:#141C20;padding:8px 12px}.terms-content-section .form-control:focus{background-color:#FFFFFF;border-color:#1B2A32;box-shadow:none;color:#141C20}.terms-content-section .form-control::placeholder{color:#8A97A0;opacity:1}@media(max-width:767.98px){.terms-content-section .terms-main-title{font-size:1.125rem!important}.terms-content-section .terms-article-block h2{font-size:1rem!important}.terms-content-section .terms-article-block h3{font-size:0.875rem!important}.terms-content-section .terms-article-block{padding:24px 18px}.terms-content-section .terms-sidebar{position:static;margin-bottom:24px}}

/* Keep legal copy at the same readable contrast level as the disclaimer page. */
.terms-content-section .text-secondary {
    color: #5A6872 !important;
}

/* ===== PAGE: disclaimer ===== */
.kh-disclaimer-section {
  background-color: #FAF9F6;
  color: #141C20;
  padding-top: 5rem;
  padding-bottom: 6rem;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
}

.kh-disclaimer-section .kh-disclaimer-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E2D9;
  padding: 3rem 2rem;
  box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04);
}

@media (min-width: 768px) {
  .kh-disclaimer-section .kh-disclaimer-card {
    padding: 4rem 3.5rem;
  }
}

@media (min-width: 992px) {
  .kh-disclaimer-section .kh-disclaimer-card {
    padding: 4.5rem 4rem;
  }
}

.kh-disclaimer-section .kh-disclaimer-header {
  border-bottom: 1px solid #E7E2D9;
  padding-bottom: 2.25rem;
  margin-bottom: 2.5rem;
}

.kh-disclaimer-section .kh-disclaimer-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8C7355;
  margin-bottom: 1rem;
}

.kh-disclaimer-section .kh-disclaimer-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: #1B2A32;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

@media (max-width: 767.98px) {
  .kh-disclaimer-section .kh-disclaimer-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
}

.kh-disclaimer-section .kh-disclaimer-date {
  font-size: 0.875rem;
  color: #5A6872;
  margin-bottom: 0;
  font-weight: 400;
}

.kh-disclaimer-section .kh-disclaimer-notice-box {
  background-color: #FAF9F6;
  border-left: 3px solid #8C7355;
  padding: 1.75rem 1.5rem;
  margin-bottom: 3rem;
}

.kh-disclaimer-section .kh-disclaimer-lead-text {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: #141C20;
  margin-bottom: 0;
}

.kh-disclaimer-section .kh-disclaimer-body {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.kh-disclaimer-section .kh-disclaimer-block {
  position: relative;
  border-bottom: 1px solid #F3F0EB;
  padding-bottom: 2.25rem;
}

.kh-disclaimer-section .kh-disclaimer-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kh-disclaimer-section .kh-disclaimer-block-header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.kh-disclaimer-section .kh-disclaimer-index {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #8C7355;
  line-height: 1;
}

.kh-disclaimer-section .kh-disclaimer-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
  color: #1B2A32;
  margin-bottom: 0;
  letter-spacing: -0.005em;
}

@media (max-width: 767.98px) {
  .kh-disclaimer-section .kh-disclaimer-section-title {
    font-size: 1rem;
    hyphens: auto;
  }
}

.kh-disclaimer-section .kh-disclaimer-paragraph {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #5A6872;
  margin-bottom: 1rem;
}

.kh-disclaimer-section .kh-disclaimer-paragraph:last-of-type {
  margin-bottom: 0;
}

.kh-disclaimer-section .kh-disclaimer-inline-link {
  color: #1B2A32;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #8C7355;
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.kh-disclaimer-section .kh-disclaimer-inline-link:hover {
  color: #8C7355;
  border-bottom-color: #1B2A32;
}

.kh-disclaimer-section .kh-disclaimer-contact-cta {
  background-color: #FDFBF7;
  border: 1px solid #E7E2D9;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .kh-disclaimer-section .kh-disclaimer-contact-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.kh-disclaimer-section .kh-disclaimer-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1B2A32;
  margin-bottom: 0.375rem;
}

@media (max-width: 767.98px) {
  .kh-disclaimer-section .kh-disclaimer-cta-title {
    font-size: 0.875rem;
  }
}

.kh-disclaimer-section .kh-disclaimer-cta-text {
  font-size: 0.875rem;
  color: #5A6872;
  margin-bottom: 0;
  line-height: 1.5;
}

.kh-disclaimer-section .kh-disclaimer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: fit-content;
}

@media (min-width: 576px) {
  .kh-disclaimer-section .kh-disclaimer-cta-actions {
    flex-direction: row;
  }
}

.kh-disclaimer-section .kh-disclaimer-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1B2A32;
  color: #FFFFFF;
  border: 1px solid #1B2A32;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kh-disclaimer-section .kh-disclaimer-btn-primary:hover {
  background-color: #8C7355;
  border-color: #8C7355;
  color: #FFFFFF;
}

.kh-disclaimer-section .kh-disclaimer-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #1B2A32;
  border: 1px solid #1B2A32;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.kh-disclaimer-section .kh-disclaimer-btn-secondary:hover {
  background-color: #1B2A32;
  color: #FFFFFF;
}

.editorial-comment-item {
    background: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 36px 32px;
    margin-bottom: 24px;
    position: relative;
    border-radius: 0px;
}

.editorial-comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.editorial-avatar-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #1B2A32;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid #1B2A32;
    border-radius: 0px;
}

.editorial-meta-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.editorial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.editorial-author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #141C20;
    margin: 0;
    line-height: 1.2;
}

.editorial-project-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #8C7355;
    background: #FDFBF7;
    padding: 3px 8px;
    border: 1px solid #E7E2D9;
    border-radius: 0px;
}

.editorial-comment-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    color: #8A97A0;
    letter-spacing: 0.02em;
}

.editorial-comment-body {
    margin-bottom: 20px;
}

.editorial-comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5A6872;
    margin: 0;
    font-weight: 400;
}

.editorial-comment-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #F3F0EB;
    padding-top: 16px;
}

.editorial-reply-action-btn {
    background: transparent;
    border: none;
    color: #1B2A32;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    cursor: pointer;
    border-radius: 0px;
}

.editorial-reply-action-btn:hover {
    color: #8C7355;
}

.editorial-reply-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.editorial-reply-wrapper {
    position: relative;
    padding-left: 48px;
    margin-top: -12px;
    margin-bottom: 24px;
}

.editorial-reply-thread-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 32px;
    width: 1px;
    background-color: #D1C9BC;
}

.editorial-reply-item {
    background: #FDFBF7;
    border: 1px solid #E7E2D9;
    border-left: 2px solid #8C7355;
    padding: 28px 28px;
    border-radius: 0px;
}

.editorial-avatar-reply {
    background-color: #8C7355;
    border-color: #8C7355;
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.8125rem;
}

.editorial-tag-accent {
    background: #FFFFFF;
    border-color: #8C7355;
    color: #1B2A32;
}

@media (max-width: 767.98px) {
    .editorial-reply-wrapper {
        padding-left: 16px;
    }

    .editorial-reply-thread-line {
        left: 8px;
    }

    .editorial-comment-item,
    .editorial-reply-item {
        padding: 24px 18px;
    }
}


/* ===== PAGE TEMPLATE: services ===== */
.kelvin-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background-color: #FAF9F6;
    box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kelvin-header__topbar {
    background-color: #1B2A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kelvin-header__topbar-link {
    color: #D0D9DE;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.kelvin-header__topbar-link:hover,
.kelvin-header__topbar-link:focus {
    color: #FFFFFF;
}

.kelvin-header__icon {
    width: 14px;
    height: 14px;
    color: #8C7355;
    flex-shrink: 0;
}

.kelvin-header__badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__whatsapp-link {
    color: #FFFFFF;
    background-color: #8C7355;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.kelvin-header__whatsapp-link:hover {
    background-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-header__navbar {
    background-color: #FAF9F6;
    border-bottom: 1px solid #E7E2D9;
    padding: 18px 0;
}

.kelvin-header__brand {
    text-decoration: none;
}

.kelvin-header__logo-img {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.kelvin-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.kelvin-header__brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1B2A32;
}

.kelvin-header__brand-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kelvin-header__nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #141C20;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.2s ease;
}

.kelvin-header__nav-link:hover,
.kelvin-header__nav-link:focus {
    color: #8C7355;
}

.kelvin-header__cta-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 12px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kelvin-header__cta-btn:hover,
.kelvin-header__cta-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
    box-shadow: none;
}

.kelvin-header__toggler {
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 6px 10px;
    background-color: transparent;
}

.kelvin-header__toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .kelvin-header__navbar {
        padding: 12px 0;
    }

    .kelvin-header .navbar-collapse {
        background-color: #FAF9F6;
        padding: 20px 16px;
        border-top: 1px solid #E7E2D9;
        margin-top: 12px;
    }

    .kelvin-header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        margin-bottom: 20px !important;
    }

    .kelvin-header__nav-link {
        width: 100%;
        padding: 10px 0 !important;
        font-size: 0.875rem;
        border-bottom: 1px solid #F3F0EB;
    }

    .kelvin-header__cta-wrapper {
        width: 100%;
    }

    .kelvin-header__cta-btn {
        width: 100%;
        text-align: center;
    }
}

.kelvin-hero-section {
    position: relative;
    min-height: 60vh;
    padding-top: 110px;
    padding-bottom: 110px;
    overflow: hidden;
    background-color: #1B2A32;
}

.kelvin-hero-section__bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.kelvin-hero-section__overlay {
    background: linear-gradient(135deg, rgba(15, 25, 30, 0.88) 0%, rgba(27, 42, 50, 0.72) 100%);
    z-index: 2;
}

.kelvin-hero-section .container {
    z-index: 3;
}

.kelvin-hero-section__badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #A89073;
    border-left: 2px solid #8C7355;
    padding-left: 12px;
    line-height: 1.4;
}

.kelvin-hero-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #FFFFFF;
    hyphens: auto;
}

.kelvin-hero-section__lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #D0D9DE;
    max-width: 580px;
}

.kelvin-hero-section__btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #8C7355;
    border: 1px solid #8C7355;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-primary:hover,
.kelvin-hero-section__btn-primary:focus {
    background-color: #6B553B;
    border-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-hero-section__btn-outline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #E7E2D9;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-outline:hover,
.kelvin-hero-section__btn-outline:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1B2A32;
}

.kelvin-hero-section__metric-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FAF9F6;
}

.kelvin-hero-section__metric-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #94A3B8;
    text-transform: uppercase;
}

.kelvin-hero-section__divider {
    z-index: 4;
    line-height: 0;
}

@media (max-width: 767.98px) {
    .kelvin-hero-section {
        padding-top: 70px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .kelvin-hero-section__title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .kelvin-hero-section__lead {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .kelvin-hero-section__btn-primary,
    .kelvin-hero-section__btn-outline {
        width: 100%;
        padding: 14px 24px;
    }
}

.kelvin-service-detail {
    background-color: #FAF9F6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #141C20;
}

.kelvin-service-detail .breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 2rem;
}

.kelvin-service-detail .breadcrumb-item a {
    color: #8C7355;
    text-decoration: none;
}

.kelvin-service-detail .breadcrumb-item.active {
    color: #5A6872;
}

.kelvin-service-detail__article {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 40px;
}

.kelvin-service-detail__main-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    border: 1px solid #E7E2D9;
}

.kelvin-service-detail__section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    color: #1B2A32;
    line-height: 1.25;
    font-weight: 500;
}

.kelvin-service-detail__section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: #1B2A32;
    line-height: 1.3;
    font-weight: 500;
}

.kelvin-service-detail__prose {
    color: #5A6872;
    font-size: 1rem;
    line-height: 1.7;
}

.kelvin-service-detail__prose p {
    margin-bottom: 1.25rem;
    color: #5A6872;
}

.kelvin-service-detail__feature-list {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 1.5rem;
    color: #141C20;
}

.kelvin-service-detail__feature-list li {
    margin-bottom: 0.5rem;
}

.kelvin-service-detail__specs-card {
    background-color: #FDFBF7;
    border: 1px solid #E7E2D9;
    padding: 28px;
}

.kelvin-service-detail__specs-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1B2A32;
    border-bottom: 1px solid #E7E2D9;
    padding-bottom: 10px;
}

.kelvin-service-detail__spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kelvin-service-detail__spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8A97A0;
}

.kelvin-service-detail__spec-value {
    font-size: 0.9375rem;
    color: #1B2A32;
    font-weight: 600;
}

.kelvin-service-detail__quote-panel {
    background-color: #FAF9F6;
    border-left: 3px solid #8C7355;
    padding: 24px 28px;
    margin: 2rem 0;
}

.kelvin-service-detail__quote-panel blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-style: italic;
    color: #1B2A32;
    line-height: 1.4;
    margin-bottom: 8px;
}

.kelvin-service-detail__quote-panel cite {
    font-size: 0.75rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-service-detail__tabs-wrapper {
    border: 1px solid #E7E2D9;
    padding: 28px;
    background-color: #FAF9F6;
}

.kelvin-service-detail__tab-btn {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    color: #141C20;
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kelvin-service-detail__tab-btn.active,
.kelvin-service-detail__tab-btn:hover {
    background-color: #1B2A32;
    color: #FFFFFF;
    border-color: #1B2A32;
}

.kelvin-service-detail__tab-panel {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 24px;
    margin-top: 10px;
}

.kelvin-service-detail__tab-panel h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #1B2A32;
    margin-bottom: 8px;
}

.kelvin-service-detail__tab-panel p {
    color: #5A6872;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.kelvin-service-detail__sidebar {
    position: sticky;
    top: 100px;
}

.kelvin-service-detail__order-card {
    background-color: #FFFFFF;
    border: 1px solid #1B2A32;
    padding: 32px 24px;
}

.kelvin-service-detail__order-badge {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8C7355;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.kelvin-service-detail__order-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: #1B2A32;
    font-weight: 500;
    margin-bottom: 8px;
}

.kelvin-service-detail__order-desc {
    font-size: 0.8125rem;
    color: #5A6872;
    line-height: 1.5;
    margin-bottom: 20px;
}

.kelvin-service-detail__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1B2A32;
    margin-bottom: 6px;
}

.kelvin-service-detail__input {
    background-color: #FAF9F6;
    border: 1px solid #D1C9BC;
    border-radius: 0;
    font-size: 0.875rem;
    color: #141C20;
    padding: 12px 14px;
}

.kelvin-service-detail__input:focus {
    background-color: #FFFFFF;
    border-color: #1B2A32;
    box-shadow: none;
    color: #141C20;
}

.kelvin-service-detail__input::placeholder {
    color: #8A97A0;
    opacity: 1;
}

.kelvin-service-detail__submit-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: background-color 0.2s ease;
}

.kelvin-service-detail__submit-btn:hover,
.kelvin-service-detail__submit-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

.kelvin-service-detail__nav-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    padding: 24px;
}

.kelvin-service-detail__nav-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1B2A32;
    margin-bottom: 16px;
    border-bottom: 1px solid #E7E2D9;
    padding-bottom: 8px;
}

.kelvin-service-detail__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kelvin-service-detail__nav-list li {
    margin-bottom: 10px;
}

.kelvin-service-detail__nav-link {
    color: #5A6872;
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #F3F0EB;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.kelvin-service-detail__nav-link:hover {
    color: #8C7355;
    padding-left: 6px;
}

.kelvin-service-detail__contact-box {
    background-color: #1B2A32;
    padding: 24px;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
}

.kelvin-service-detail__contact-badge {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A89073;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.kelvin-service-detail__contact-text {
    font-size: 0.8125rem;
    color: #D0D9DE;
    line-height: 1.5;
    margin-bottom: 12px;
}

.kelvin-service-detail__contact-phone {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.kelvin-service-detail__contact-phone:hover {
    color: #A89073;
}

.kelvin-service-detail__contact-wa {
    color: #FFFFFF;
    background-color: #8C7355;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.kelvin-service-detail__contact-wa:hover {
    background-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-editorial-footer {
    background-color: #FAF9F6;
    border-top: 1px solid #E7E2D9;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.kelvin-editorial-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-editorial-footer__brand-block {
    max-width: 320px;
}

.kelvin-editorial-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.kelvin-editorial-footer__logo-img {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.kelvin-editorial-footer__brand-name {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A32;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 0;
    hyphens: auto;
}

.kelvin-editorial-footer__heading {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1B2A32;
    margin-bottom: 1.5rem;
}

.kelvin-editorial-footer__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kelvin-editorial-footer__nav-list li {
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__link {
    color: #5A6872;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.kelvin-editorial-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kelvin-editorial-footer__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    stroke: #8C7355;
    margin-top: 0.1875rem;
}

.kelvin-editorial-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A6872;
    hyphens: auto;
}

.kelvin-editorial-footer__contact-link {
    font-size: 0.875rem;
    color: #1B2A32;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__contact-link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__bottom {
    padding-top: 2rem;
}

.kelvin-editorial-footer__copyright {
    font-size: 0.8125rem;
    color: #8A97A0;
    font-weight: 400;
}

.kelvin-editorial-footer__scroll-top {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.kelvin-editorial-footer__scroll-top:hover {
    background-color: #8C7355;
    border-color: #8C7355;
}

.kelvin-editorial-footer__scroll-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.kelvin-editorial-footer__scroll-icon {
    width: 0.875rem;
    height: 0.875rem;
    stroke: #FFFFFF;
}

@media (max-width: 767.98px) {
    .kelvin-service-detail__article {
        padding: 20px 16px;
    }

    .kelvin-service-detail__section-title {
        font-size: 1rem;
    }

    .kelvin-service-detail__section-subtitle {
        font-size: 0.875rem;
    }

    .kelvin-service-detail__sidebar {
        position: static;
    }

    .kelvin-editorial-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .kelvin-editorial-footer__heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .kelvin-editorial-footer__bottom {
        padding-top: 1.5rem;
    }

    .kelvin-editorial-footer__scroll-top {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PAGE TEMPLATE: solutions ===== */
.kelvin-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background-color: #FAF9F6;
    box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kelvin-header__topbar {
    background-color: #1B2A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kelvin-header__topbar-link {
    color: #D0D9DE;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.kelvin-header__topbar-link:hover,
.kelvin-header__topbar-link:focus {
    color: #FFFFFF;
}

.kelvin-header__icon {
    width: 14px;
    height: 14px;
    color: #8C7355;
    flex-shrink: 0;
}

.kelvin-header__badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__whatsapp-link {
    color: #FFFFFF;
    background-color: #8C7355;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.kelvin-header__whatsapp-link:hover {
    background-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-header__navbar {
    background-color: #FAF9F6;
    border-bottom: 1px solid #E7E2D9;
    padding: 18px 0;
}

.kelvin-header__brand {
    text-decoration: none;
}

.kelvin-header__logo-img {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.kelvin-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.kelvin-header__brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1B2A32;
}

.kelvin-header__brand-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kelvin-header__nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #141C20;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.2s ease;
}

.kelvin-header__nav-link:hover,
.kelvin-header__nav-link:focus {
    color: #8C7355;
}

.kelvin-header__cta-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 12px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kelvin-header__cta-btn:hover,
.kelvin-header__cta-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
    box-shadow: none;
}

.kelvin-header__toggler {
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 6px 10px;
    background-color: transparent;
}

.kelvin-header__toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .kelvin-header__navbar {
        padding: 12px 0;
    }

    .kelvin-header .navbar-collapse {
        background-color: #FAF9F6;
        padding: 20px 16px;
        border-top: 1px solid #E7E2D9;
        margin-top: 12px;
    }

    .kelvin-header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        margin-bottom: 20px !important;
    }

    .kelvin-header__nav-link {
        width: 100%;
        padding: 10px 0 !important;
        font-size: 0.875rem;
        border-bottom: 1px solid #F3F0EB;
    }

    .kelvin-header__cta-wrapper {
        width: 100%;
    }

    .kelvin-header__cta-btn {
        width: 100%;
        text-align: center;
    }
}

.kelvin-hero-section {
    position: relative;
    min-height: 70vh;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    background-color: #1B2A32;
}

.kelvin-hero-section__bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.kelvin-hero-section__overlay {
    background: linear-gradient(135deg, rgba(15, 25, 30, 0.88) 0%, rgba(27, 42, 50, 0.72) 100%);
    z-index: 2;
}

.kelvin-hero-section .container {
    z-index: 3;
}

.kelvin-hero-section__badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #A89073;
    border-left: 2px solid #8C7355;
    padding-left: 12px;
    line-height: 1.4;
}

.kelvin-hero-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #FFFFFF;
    hyphens: auto;
}

.kelvin-hero-section__lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #D0D9DE;
    max-width: 580px;
}

.kelvin-hero-section__btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #8C7355;
    border: 1px solid #8C7355;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-primary:hover,
.kelvin-hero-section__btn-primary:focus {
    background-color: #6B553B;
    border-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-hero-section__btn-outline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #E7E2D9;
    border-radius: 0;
    padding: 16px 36px;
    box-shadow: none;
}

.kelvin-hero-section__btn-outline:hover,
.kelvin-hero-section__btn-outline:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1B2A32;
}

.kelvin-hero-section__metric-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FAF9F6;
}

.kelvin-hero-section__metric-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #94A3B8;
    text-transform: uppercase;
}

.kelvin-hero-section__divider {
    z-index: 4;
    line-height: 0;
}

@media (max-width: 767.98px) {
    .kelvin-hero-section {
        padding-top: 80px;
        padding-bottom: 90px;
        min-height: auto;
    }

    .kelvin-hero-section__title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .kelvin-hero-section__lead {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .kelvin-hero-section__btn-primary,
    .kelvin-hero-section__btn-outline {
        width: 100%;
        padding: 14px 24px;
    }
}

.solution-detail-view {
    background-color: #FAF9F6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.solution-detail-view__content-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    border-radius: 0;
}

.solution-detail-view__meta-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8C7355;
}

.solution-detail-view__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1B2A32;
    line-height: 1.2;
}

.solution-detail-view__subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1B2A32;
    line-height: 1.3;
}

.solution-detail-view__body-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5A6872;
    margin-bottom: 1rem;
}

.solution-detail-view__quote-box {
    background-color: #FAF9F6;
    border-left: 3px solid #8C7355;
    padding: 24px 28px;
}

.solution-detail-view__quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #1B2A32;
    line-height: 1.5;
}

.solution-detail-view__spec-item {
    border-color: #E7E2D9 !important;
}

.solution-detail-view__spec-name {
    font-size: 0.875rem;
    color: #5A6872;
}

.solution-detail-view__spec-val {
    font-size: 0.875rem;
    color: #1B2A32;
    font-weight: 600;
}

.solution-detail-view__media-wrapper {
    border: 1px solid #E7E2D9;
    background-color: #FFFFFF;
    padding: 8px;
}

.solution-detail-view__image {
    object-fit: cover;
    height: 380px;
    border-radius: 0;
}

.solution-detail-view__scope-card {
    background-color: #FDFBF7;
    border: 1px solid #E7E2D9;
    border-radius: 0;
}

.solution-detail-view__check-item {
    font-size: 0.875rem;
    color: #141C20;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.solution-detail-view__check-item::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 2px;
    color: #8C7355;
    font-size: 0.75rem;
}

.solution-detail-view__consult-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A6872;
    font-weight: 600;
}

.solution-detail-view__consult-link {
    font-size: 0.875rem;
    color: #1B2A32;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.solution-detail-view__consult-link:hover {
    color: #8C7355;
}

.solution-detail-view__form-container {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
    border-radius: 0;
}

.solution-detail-view__form-lead {
    font-size: 0.9375rem;
    color: #5A6872;
    max-width: 600px;
    line-height: 1.6;
}

.solution-detail-view__form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1B2A32;
    margin-bottom: 6px;
}

.solution-detail-view__form-input {
    background-color: #FAF9F6;
    border: 1px solid #D1C9BC;
    border-radius: 0;
    color: #141C20;
    padding: 12px 16px;
    font-size: 0.875rem;
    box-shadow: none;
}

.solution-detail-view__form-input:focus {
    background-color: #FFFFFF;
    border-color: #8C7355;
    outline: none;
    box-shadow: none;
    color: #141C20;
}

.solution-detail-view__form-input::placeholder {
    color: #8A97A0;
    opacity: 1;
}

.solution-detail-view__submit-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 16px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.solution-detail-view__submit-btn:hover,
.solution-detail-view__submit-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .solution-detail-view__heading {
        font-size: 1rem;
    }

    .solution-detail-view__subheading {
        font-size: 0.875rem;
    }

    .solution-detail-view__image {
        height: 240px;
    }

    .solution-detail-view__submit-btn {
        width: 100%;
    }
}

.kelvin-editorial-footer {
    background-color: #FAF9F6;
    border-top: 1px solid #E7E2D9;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.kelvin-editorial-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-editorial-footer__brand-block {
    max-width: 320px;
}

.kelvin-editorial-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.kelvin-editorial-footer__logo-img {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.kelvin-editorial-footer__brand-name {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A32;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 0;
    hyphens: auto;
}

.kelvin-editorial-footer__heading {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1B2A32;
    margin-bottom: 1.5rem;
}

.kelvin-editorial-footer__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kelvin-editorial-footer__nav-list li {
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__link {
    color: #5A6872;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.kelvin-editorial-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kelvin-editorial-footer__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    stroke: #8C7355;
    margin-top: 0.1875rem;
}

.kelvin-editorial-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A6872;
    hyphens: auto;
}

.kelvin-editorial-footer__contact-link {
    font-size: 0.875rem;
    color: #1B2A32;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__contact-link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__bottom {
    padding-top: 2rem;
}

.kelvin-editorial-footer__copyright {
    font-size: 0.8125rem;
    color: #8A97A0;
    font-weight: 400;
}

.kelvin-editorial-footer__scroll-top {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.kelvin-editorial-footer__scroll-top:hover {
    background-color: #8C7355;
    border-color: #8C7355;
}

.kelvin-editorial-footer__scroll-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.kelvin-editorial-footer__scroll-icon {
    width: 0.875rem;
    height: 0.875rem;
    stroke: #FFFFFF;
}

@media (max-width: 767.98px) {
    .kelvin-editorial-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .kelvin-editorial-footer__heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .kelvin-editorial-footer__bottom {
        padding-top: 1.5rem;
    }

    .kelvin-editorial-footer__scroll-top {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
body {
    background-color: #FAF9F6;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.kelvin-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background-color: #FAF9F6;
    box-shadow: 0 2px 8px rgba(27, 42, 50, 0.04);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kelvin-header__topbar {
    background-color: #1B2A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kelvin-header__topbar-link {
    color: #D0D9DE;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.kelvin-header__topbar-link:hover,
.kelvin-header__topbar-link:focus {
    color: #FFFFFF;
}

.kelvin-header__icon {
    width: 14px;
    height: 14px;
    color: #8C7355;
    flex-shrink: 0;
}

.kelvin-header__badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__whatsapp-link {
    color: #FFFFFF;
    background-color: #8C7355;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.kelvin-header__whatsapp-link:hover {
    background-color: #6B553B;
    color: #FFFFFF;
}

.kelvin-header__navbar {
    background-color: #FAF9F6;
    border-bottom: 1px solid #E7E2D9;
    padding: 18px 0;
}

.kelvin-header__brand {
    text-decoration: none;
}

.kelvin-header__logo-img {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.kelvin-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.kelvin-header__brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1B2A32;
}

.kelvin-header__brand-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8C7355;
    font-weight: 600;
}

.kelvin-header__nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kelvin-header__nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #141C20;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.2s ease;
}

.kelvin-header__nav-link:hover,
.kelvin-header__nav-link:focus {
    color: #8C7355;
}

.kelvin-header__cta-btn {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 12px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kelvin-header__cta-btn:hover,
.kelvin-header__cta-btn:focus {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
    box-shadow: none;
}

.kelvin-header__toggler {
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 6px 10px;
    background-color: transparent;
}

.kelvin-header__toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .kelvin-header__navbar {
        padding: 12px 0;
    }

    .kelvin-header .navbar-collapse {
        background-color: #FAF9F6;
        padding: 20px 16px;
        border-top: 1px solid #E7E2D9;
        margin-top: 12px;
    }

    .kelvin-header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        margin-bottom: 20px !important;
    }

    .kelvin-header__nav-link {
        width: 100%;
        padding: 10px 0 !important;
        font-size: 0.875rem;
        border-bottom: 1px solid #F3F0EB;
    }

    .kelvin-header__cta-wrapper {
        width: 100%;
    }

    .kelvin-header__cta-btn {
        width: 100%;
        text-align: center;
    }
}

.kelvin-detail-hero {
    background-color: #F3F0EB;
    border-bottom: 1px solid #E7E2D9;
    padding-top: 50px;
    padding-bottom: 60px;
}

.kelvin-detail-hero__breadcrumb .breadcrumb-item {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: #5A6872;
}

.kelvin-detail-hero__breadcrumb-link {
    color: #8C7355;
    text-decoration: none;
}

.kelvin-detail-hero__breadcrumb-link:hover {
    color: #1B2A32;
}

.kelvin-detail-hero__tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #8C7355;
    border-left: 2px solid #8C7355;
    padding-left: 10px;
}

.kelvin-detail-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1B2A32;
    hyphens: auto;
}

.kelvin-detail-hero__subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5A6872;
    max-width: 780px;
}

.kelvin-detail-hero__meta {
    border-color: #E7E2D9 !important;
}

.kelvin-detail-hero__meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8A97A0;
    font-weight: 600;
}

.kelvin-detail-hero__meta-val {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1B2A32;
}

.kelvin-article-body {
    padding-top: 70px;
    padding-bottom: 90px;
    background-color: #FAF9F6;
}

.kelvin-article-body__featured-wrapper {
    border: 1px solid #E7E2D9;
    background-color: #FFFFFF;
    padding: 12px;
}

.kelvin-article-body__featured-image {
    display: block;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.kelvin-article-body__caption-text {
    font-size: 0.75rem;
    font-style: italic;
    color: #8A97A0;
    letter-spacing: 0.04em;
}

.kelvin-article-body__lead-box {
    background-color: #FFFFFF;
    border-left: 3px solid #1B2A32;
    padding: 24px 28px;
    border-top: 1px solid #E7E2D9;
    border-right: 1px solid #E7E2D9;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-article-body__lead-text {
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 400;
    color: #1B2A32;
}

.kelvin-article-body__rich-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #141C20;
}

.kelvin-article-body__rich-text p {
    color: #5A6872;
    margin-bottom: 1.5rem;
}

.kelvin-article-body__section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1B2A32;
    margin-top: 2rem;
}

.kelvin-article-body__sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1B2A32;
    margin-top: 1.75rem;
}

.kelvin-article-body__pull-quote {
    background-color: #FDFBF7;
    border-left: 3px solid #8C7355;
    border-top: 1px solid #E7E2D9;
    border-right: 1px solid #E7E2D9;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-article-body__quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.5;
    color: #1B2A32;
}

.kelvin-article-body__quote-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8C7355;
    font-style: normal;
    font-weight: 600;
}

.kelvin-article-body__spec-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
}

.kelvin-article-body__spec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1B2A32;
}

.kelvin-article-body__spec-list {
    padding-left: 1.25rem;
    color: #5A6872;
}

.kelvin-article-body__spec-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.kelvin-article-body__navigation-strip {
    border-color: #E7E2D9 !important;
}

.kelvin-article-body__nav-btn {
    background-color: transparent;
    color: #1B2A32;
    border: 1px solid #1B2A32;
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.kelvin-article-body__nav-btn:hover {
    background-color: #1B2A32;
    color: #FFFFFF;
}

.kelvin-article-body__nav-btn-primary {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kelvin-article-body__nav-btn-primary:hover {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

.kelvin-article-body__btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.kelvin-sidebar__card {
    background-color: #FFFFFF;
    border: 1px solid #E7E2D9;
}

.kelvin-sidebar__card--accent {
    background-color: #FDFBF7;
    border-color: #D1C9BC;
}

.kelvin-sidebar__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A32;
    line-height: 1.2;
}

.kelvin-sidebar__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
}

.kelvin-sidebar__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #8C7355;
}

.kelvin-sidebar__list {
    list-style: none;
    padding-left: 0;
}

.kelvin-sidebar__link {
    color: #141C20;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.kelvin-sidebar__link:hover {
    color: #8C7355;
}

.kelvin-sidebar__cta-link {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.kelvin-sidebar__cta-link:hover {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

.kelvin-sidebar__cta-link--outline {
    background-color: #8C7355;
    border-color: #8C7355;
    color: #FFFFFF;
}

.kelvin-sidebar__cta-link--outline:hover {
    background-color: #6B553B;
    border-color: #6B553B;
}

.kelvin-sidebar__spec-list dt {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #5A6872;
}

.kelvin-sidebar__spec-list dd {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2A32;
}

.kelvin-sidebar__item {
    border-color: #E7E2D9 !important;
}

.kelvin-editorial-footer {
    background-color: #FAF9F6;
    border-top: 1px solid #E7E2D9;
    color: #141C20;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.kelvin-editorial-footer__main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #E7E2D9;
}

.kelvin-editorial-footer__brand-block {
    max-width: 320px;
}

.kelvin-editorial-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.kelvin-editorial-footer__logo-img {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.kelvin-editorial-footer__brand-name {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B2A32;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A6872;
    margin-bottom: 0;
    hyphens: auto;
}

.kelvin-editorial-footer__heading {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1B2A32;
    margin-bottom: 1.5rem;
}

.kelvin-editorial-footer__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kelvin-editorial-footer__nav-list li {
    margin-bottom: 0.75rem;
}

.kelvin-editorial-footer__link {
    color: #5A6872;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.kelvin-editorial-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kelvin-editorial-footer__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    stroke: #8C7355;
    margin-top: 0.1875rem;
}

.kelvin-editorial-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A6872;
    hyphens: auto;
}

.kelvin-editorial-footer__contact-link {
    font-size: 0.875rem;
    color: #1B2A32;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.kelvin-editorial-footer__contact-link:hover {
    color: #8C7355;
}

.kelvin-editorial-footer__bottom {
    padding-top: 2rem;
}

.kelvin-editorial-footer__copyright {
    font-size: 0.8125rem;
    color: #8A97A0;
    font-weight: 400;
}

.kelvin-editorial-footer__scroll-top {
    background-color: #1B2A32;
    color: #FFFFFF;
    border: 1px solid #1B2A32;
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.kelvin-editorial-footer__scroll-top:hover {
    background-color: #8C7355;
    border-color: #8C7355;
}

.kelvin-editorial-footer__scroll-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.kelvin-editorial-footer__scroll-icon {
    width: 0.875rem;
    height: 0.875rem;
    stroke: #FFFFFF;
}

@media (max-width: 767.98px) {
    .kelvin-detail-hero {
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .kelvin-detail-hero__title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .kelvin-detail-hero__subtitle {
        font-size: 0.9375rem;
    }

    .kelvin-article-body {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .kelvin-article-body__section-title {
        font-size: 1.0rem;
    }

    .kelvin-article-body__sub-title {
        font-size: 0.875rem;
    }

    .kelvin-editorial-footer {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .kelvin-editorial-footer__heading {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .kelvin-editorial-footer__bottom {
        padding-top: 1.5rem;
    }

    .kelvin-editorial-footer__scroll-top {
        width: 100%;
        justify-content: center;
    }
}
