:root {
    --primary-main: #2C3527;
    --primary-light: #4A5543;
    --primary-dark: #1B2218;
    --primary-contrast: #FDFBF7;
    --secondary-main: #8C7A6B;
    --secondary-light: #B5A79A;
    --secondary-dark: #635447;
    --secondary-contrast: #FFFFFF;
    --accent-terracotta: #C46D52;
    --accent-terracotta-soft: #DF947E;
    --accent-olive: #5E694D;
    --accent-sand-gold: #D8C3A5;
    --bg-primary: #FAF8F5;
    --bg-secondary: #F3EFEA;
    --bg-surface: #FFFFFF;
    --bg-subtle: #EBE5DC;
    --text-primary: #1F241E;
    --text-secondary: #5E645A;
    --text-muted: #8A9086;
    --border-delicate: rgba(44, 53, 39, 0.08);
    --border-refined: rgba(44, 53, 39, 0.15);
    --border-accent: rgba(196, 109, 82, 0.35);
    --border-hairline: rgba(140, 122, 107, 0.2);
    --shadow-subtle: 0 4px 20px rgba(44, 53, 39, 0.03);
    --shadow-card: 0 10px 30px rgba(44, 53, 39, 0.05);
    --shadow-elevated: 0 20px 45px rgba(44, 53, 39, 0.08);
    --shadow-hover: 0 25px 50px rgba(44, 53, 39, 0.12);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--accent-terracotta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===== header ===== */
.luxury-header {
    background-color: #FAF8F5;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.luxury-header .luxury-header__top-bar {
    background-color: #F3EFEA;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
    padding: 0.45rem 0;
    font-size: 0.785rem;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item {
    display: inline-flex;
    align-items: center;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item i {
    color: #8C7A6B;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link {
    color: #2C3527;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.luxury-header .luxury-header__contact-link i {
    color: #C46D52;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link:hover {
    color: #C46D52;
}

.luxury-header .luxury-header__whatsapp-link {
    color: #2C3527;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.luxury-header .luxury-header__whatsapp-link i {
    color: #5E694D;
}

.luxury-header .luxury-header__whatsapp-link:hover {
    color: #5E694D;
}

.luxury-header .luxury-header__navbar {
    background-color: #FAF8F5;
    padding: 0.75rem 0;
}

.luxury-header .luxury-header__brand {
    text-decoration: none;
}

.luxury-header .luxury-header__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.luxury-header .luxury-header__brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C3527;
    letter-spacing: -0.01em;
}

.luxury-header .luxury-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-header .luxury-header__nav-link {
    color: #2C3527;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.luxury-header .luxury-header__nav-link:hover,
.luxury-header .luxury-header__nav-link:focus,
.luxury-header .luxury-header__nav-link.active {
    color: #C46D52;
}

.luxury-header .luxury-header__toggler {
    border: 1px solid rgba(44, 53, 39, 0.2);
    padding: 0.4rem 0.65rem;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}

.luxury-header .luxury-header__toggler-icon {
    color: #2C3527;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-header .luxury-header__dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.06);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.luxury-header .luxury-header__dropdown-item {
    font-size: 0.85rem;
    color: #2C3527;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.luxury-header .luxury-header__dropdown-item:hover,
.luxury-header .luxury-header__dropdown-item:focus {
    background-color: #F7F4EF;
    color: #C46D52;
}

.luxury-header .luxury-header__dropdown-divider {
    border-color: rgba(44, 53, 39, 0.08);
    margin: 0.35rem 0;
}

.luxury-header .luxury-header__cta-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.6rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-header .luxury-header__cta-btn:hover,
.luxury-header .luxury-header__cta-btn:focus {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .luxury-header .luxury-header__navbar {
        padding: 0.6rem 0;
    }

    .luxury-header .luxury-header__brand-text {
        font-size: 1.35rem;
    }

    .luxury-header .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1rem 0;
        border-top: 1px solid rgba(44, 53, 39, 0.06);
        margin-top: 0.5rem;
    }

    .luxury-header .luxury-header__nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .luxury-header .luxury-header__dropdown-menu {
        background-color: #F7F4EF;
        border: none;
        box-shadow: none;
        padding-left: 0.75rem;
        margin-top: 0;
    }

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

/* ===== smart_home_electrical_systems ===== */
.smart-home-hero {
    position: relative;
    background-color: #FAF8F5;
    overflow: hidden;
    padding: 5rem 0;
    color: #1F241E
}

.smart-home-hero__bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at 60% 40%, rgba(216, 195, 165, 0.22) 0%, rgba(243, 239, 234, 0.45) 50%, rgba(250, 248, 245, 0) 80%);
    border-radius: 48% 52% 60% 40%/50% 40% 60% 50%;
    pointer-events: none;
    z-index: 1
}

.smart-home-hero__particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.smart-home-hero__particle--1 {
    top: 15%;
    left: 8%;
    width: 18px;
    height: 18px;
    background-color: rgba(196, 109, 82, 0.2)
}

.smart-home-hero__particle--2 {
    bottom: 18%;
    left: 45%;
    width: 12px;
    height: 12px;
    background-color: rgba(94, 105, 77, 0.25)
}

.smart-home-hero__particle--3 {
    top: 22%;
    right: 6%;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(140, 122, 107, 0.3)
}

.smart-home-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C46D52;
    box-shadow: 0 4px 15px rgba(44, 53, 39, 0.03)
}

.smart-home-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1F241E
}

.smart-home-hero__lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 400;
    color: #5E645A
}

.smart-home-hero__quote-form {
    max-width: 480px
}

.smart-home-hero__input-group {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.15);
    border-radius: 4px;
    padding: 0.35rem;
    box-shadow: 0 8px 25px rgba(44, 53, 39, 0.05)
}

.smart-home-hero__input {
    background-color: #FFFFFF;
    border: none;
    color: #1F241E;
    font-size: 0.95rem;
    padding: 0.75rem 1rem
}

.smart-home-hero__input::placeholder {
    color: #8A9086
}

.smart-home-hero__input:focus {
    background-color: #FFFFFF;
    color: #1F241E;
    box-shadow: none
}

.smart-home-hero__btn-submit {
    background-color: #C46D52;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8125rem;
    border: none;
    border-radius: 3px;
    padding: 0.8rem 1.8rem;
    transition: background-color 0.3s ease, transform 0.2s ease
}

.smart-home-hero__btn-submit:hover {
    background-color: #B35E44;
    color: #FFFFFF;
    transform: translateY(-1px)
}

.smart-home-hero__feature-item {
    font-size: 0.875rem;
    color: #5E645A;
    font-weight: 500;
    display: inline-flex;
    align-items: center
}

.smart-home-hero__feature-item i {
    color: #5E694D
}

.smart-home-hero__mockup-stage {
    position: relative;
    min-height: 540px;
    display: flex;
    justify-content: center;
    align-items: center
}

.smart-home-hero__phone {
    position: absolute;
    width: 290px;
    height: 520px;
    background: #1F241E;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(44, 53, 39, 0.18);
    transition: transform 0.4s ease
}

.smart-home-hero__phone--back {
    top: 0;
    right: 18%;
    transform: rotate(-6deg) scale(0.92);
    z-index: 2
}

.smart-home-hero__phone--front {
    bottom: 0;
    left: 18%;
    transform: rotate(4deg);
    z-index: 3
}

.smart-home-hero__phone-notch {
    width: 90px;
    height: 16px;
    background: #1F241E;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 10px auto;
    position: relative;
    z-index: 10
}

.smart-home-hero__phone-screen {
    background-color: #FFFFFF;
    border-radius: 30px;
    height: calc(100% - 26px);
    padding: 1.25rem;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column
}

.smart-home-hero__screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08)
}

.smart-home-hero__screen-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F241E
}

.smart-home-hero__card-widget {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 12px;
    padding: 0.9rem
}

.smart-home-hero__widget-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1F241E
}

.smart-home-hero__widget-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #C46D52
}

.smart-home-hero__progress {
    height: 6px;
    background-color: rgba(44, 53, 39, 0.08);
    border-radius: 4px
}

.smart-home-hero__progress-bar {
    background-color: #C46D52;
    border-radius: 4px
}

.smart-home-hero__stat-box {
    background: linear-gradient(135deg, #2C3527 0%, #4A5543 100%);
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 14px
}

.smart-home-hero__stat-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    display: block
}

.smart-home-hero__stat-main {
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    margin-top: 0.25rem
}

.smart-home-hero__toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.06);
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.5rem
}

.smart-home-hero__icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3527;
    font-size: 0.8rem;
    margin-right: 0.7rem;
    box-shadow: 0 2px 6px rgba(44, 53, 39, 0.06)
}

.smart-home-hero__toggle-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1F241E;
    line-height: 1.2
}

.smart-home-hero__toggle-sub {
    font-size: 0.68rem;
    color: #8A9086
}

.smart-home-hero__switch-pill {
    width: 38px;
    height: 22px;
    background-color: rgba(44, 53, 39, 0.2);
    border: none;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0
}

.smart-home-hero__switch-pill::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFFFFF;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
}

.smart-home-hero__switch-pill.active {
    background-color: #5E694D
}

.smart-home-hero__switch-pill.active::after {
    transform: translateX(16px)
}

@media(max-width:991px) {
    .smart-home-hero {
        padding: 3.5rem 0
    }

    .smart-home-hero__mockup-stage {
        margin-top: 2.5rem;
        min-height: 480px
    }

    .smart-home-hero__phone {
        width: 260px;
        height: 470px
    }

    .smart-home-hero__phone--back {
        right: 8%
    }

    .smart-home-hero__phone--front {
        left: 8%
    }
}

@media(max-width:767px) {
    .smart-home-hero {
        padding: 2.5rem 0
    }

    .smart-home-hero__title {
        font-size: 1.125rem;
        line-height: 1.3;
        hyphens: auto
    }

    .smart-home-hero__lead {
        font-size: 0.9rem;
        line-height: 1.6
    }

    .smart-home-hero__mockup-stage {
        min-height: 420px
    }

    .smart-home-hero__phone {
        width: 220px;
        height: 400px;
        border-radius: 28px;
        padding: 8px
    }

    .smart-home-hero__phone--back {
        right: 2%;
        transform: rotate(-4deg) scale(0.9)
    }

    .smart-home-hero__phone--front {
        left: 2%;
        transform: rotate(2deg)
    }

    .smart-home-hero__phone-screen {
        border-radius: 22px;
        padding: 0.8rem
    }

    .smart-home-hero__stat-box {
        padding: 0.65rem
    }

    .smart-home-hero__stat-main {
        font-size: 0.95rem
    }

    .smart-home-hero__toggle-item {
        padding: 0.45rem 0.5rem;
        margin-bottom: 0.35rem
    }
}

/* ===== key_benefits ===== */
.benefits-section {
    background-color: #FAF8F5;
    color: #1F241E;
    position: relative;
}

.benefits-section .benefits-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
}

.benefits-section .benefits-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2C3527;
}

.benefits-section .benefits-divider {
    width: 48px;
    height: 1.5px;
    background-color: #C46D52;
}

.benefits-section .benefits-lead {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: #5E645A;
}

.benefits-section .benefit-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1), border-color 400ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.benefits-section .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.35);
}

.benefits-section .benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 2px;
    background-color: #F7F4EF;
    border: 1px solid rgba(140, 122, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3527;
    font-size: 1.25rem;
    transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.benefits-section .benefit-card:hover .benefit-icon-wrapper {
    background-color: #2C3527;
    color: #FDFBF7;
    border-color: #2C3527;
}

.benefits-section .benefit-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #8C7A6B;
}

.benefits-section .benefit-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1F241E;
    letter-spacing: -0.01em;
}

.benefits-section .benefit-card-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: #5E645A;
}

.benefits-section .benefits-cta-box {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.1);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
    max-width: 760px;
    width: 100%;
}

.benefits-section .benefits-cta-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2C3527;
}

.benefits-section .benefits-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.8rem 1.75rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.benefits-section .benefits-btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .benefits-section .benefits-main-title {
        font-size: 1.85rem;
    }

    .benefits-section .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    .benefits-section .benefit-card-title {
        font-size: 1.35rem;
    }
}

/* ===== how_it_works_inside ===== */
.inside-process-section {
    background-color: #FAF8F5;
    padding: 5rem 0;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.inside-process-section .inside-process-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
    margin-bottom: 0.75rem;
}

.inside-process-section .inside-process-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F241E;
    margin-bottom: 1rem;
}

.inside-process-section .inside-process-divider {
    width: 50px;
    height: 1px;
    background-color: #C46D52;
    margin: 0 auto 1.25rem auto;
}

.inside-process-section .inside-process-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5E645A;
    max-width: 680px;
    margin: 0 auto;
}

.inside-process-section .inside-process-card {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    overflow: hidden;
}

.inside-process-section .inside-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.3);
}

.inside-process-section .inside-process-media {
    position: relative;
    width: 100%;
    height: 230px;
    background-color: #F3EFEA;
    overflow: hidden;
}

.inside-process-section .inside-process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.inside-process-section .inside-process-card:hover .inside-process-img {
    transform: scale(1.04);
}

.inside-process-section .inside-process-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(44, 53, 39, 0.85);
    color: #FDFBF7;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.inside-process-section .inside-process-body {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.inside-process-section .inside-process-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1F241E;
    margin-bottom: 0.85rem;
}

.inside-process-section .inside-process-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5E645A;
    margin-bottom: 1.25rem;
}

.inside-process-section .inside-process-features {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    border-top: 1px solid rgba(44, 53, 39, 0.06);
    padding-top: 1rem;
}

.inside-process-section .inside-process-features li {
    font-size: 0.875rem;
    color: #2C3527;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.inside-process-section .inside-process-features li:last-child {
    margin-bottom: 0;
}

.inside-process-section .inside-process-check {
    color: #5E694D;
    margin-right: 0.6rem;
    font-size: 0.8rem;
}

.inside-process-section .inside-process-cta-banner {
    background: #FFFFFF;
    border: 1px solid rgba(140, 122, 107, 0.2);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.inside-process-section .inside-process-cta-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #FAF8F5;
    border: 1px solid rgba(196, 109, 82, 0.35);
    border-radius: 50%;
    color: #C46D52;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
}

.inside-process-section .inside-process-cta-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1F241E;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.inside-process-section .inside-process-cta-text {
    font-size: 0.9rem;
    color: #5E645A;
    margin-bottom: 0;
    line-height: 1.5;
}

.inside-process-section .inside-process-btn-wrapper {
    display: flex;
    justify-content: center;
    justify-content: flex-end;
}

.inside-process-section .inside-process-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.9rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inside-process-section .inside-process-btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .inside-process-section {
        padding: 4rem 0;
    }

    .inside-process-section .inside-process-btn-wrapper {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .inside-process-section {
        padding: 3rem 0;
    }

    .inside-process-section .inside-process-title {
        font-size: 1.85rem;
        hyphens: auto;
    }

    .inside-process-section .inside-process-card-title {
        font-size: 1.35rem;
        hyphens: auto;
    }

    .inside-process-section .inside-process-cta-heading {
        font-size: 1.05rem;
        hyphens: auto;
    }

    .inside-process-section .inside-process-body {
        padding: 1.5rem 1.25rem;
    }
}

/* ===== work_formats ===== */
.wf-formats-section {
    background-color: #FAF8F5;
    padding: 6rem 0;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wf-formats-section .wf-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.wf-formats-section .wf-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1F241E;
    margin-bottom: 1rem;
}

.wf-formats-section .wf-divider {
    width: 48px;
    height: 2px;
    background-color: #C46D52;
    margin: 0 auto 1.25rem;
}

.wf-formats-section .wf-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5E645A;
    max-width: 650px;
    margin: 0 auto;
}

.wf-formats-section .wf-toggle-wrapper {
    background-color: #F3EFEA;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    gap: 4px;
}

.wf-formats-section .wf-toggle-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #5E645A;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.wf-formats-section .wf-toggle-btn:hover {
    color: #1F241E;
}

.wf-formats-section .wf-toggle-btn.active {
    background-color: #2C3527;
    color: #FDFBF7;
    box-shadow: 0 4px 12px rgba(44, 53, 39, 0.15);
}

.wf-formats-section .wf-card {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    position: relative;
}

.wf-formats-section .wf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.3);
}

.wf-formats-section .wf-card-featured {
    border: 1.5px solid #C46D52;
    background: #FFFFFF;
}

.wf-formats-section .wf-card-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.75rem;
    background-color: #F3EFEA;
    color: #2C3527;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.wf-formats-section .wf-badge-featured {
    background-color: #C46D52;
    color: #FFFFFF;
}

.wf-formats-section .wf-icon-box {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAF8F5;
    border: 1px solid rgba(140, 122, 107, 0.15);
    border-radius: 2px;
    color: #2C3527;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.wf-formats-section .wf-card-featured .wf-icon-box {
    background-color: #FAF8F5;
    color: #C46D52;
    border-color: rgba(196, 109, 82, 0.3);
}

.wf-formats-section .wf-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 500;
    color: #1F241E;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.wf-formats-section .wf-card-for {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5E645A;
    margin-bottom: 1.75rem;
    min-height: 48px;
}

.wf-formats-section .wf-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.wf-formats-section .wf-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.925rem;
    line-height: 1.5;
    color: #1F241E;
}

.wf-formats-section .wf-feature-list li i {
    color: #5E694D;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.wf-formats-section .wf-card-featured .wf-feature-list li i {
    color: #C46D52;
}

.wf-formats-section .wf-timeline-info {
    font-size: 0.825rem;
    font-weight: 500;
    color: #8C7A6B;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wf-formats-section .wf-btn-primary {
    background: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.85rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.wf-formats-section .wf-btn-primary:hover {
    background: #4A5543;
    color: #FFFFFF;
    border-color: #4A5543;
    transform: translateY(-2px);
}

.wf-formats-section .wf-btn-accent {
    background: #C46D52;
    color: #FFFFFF;
    border: 1px solid #C46D52;
    border-radius: 2px;
    padding: 0.85rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.wf-formats-section .wf-btn-accent:hover {
    background: #B35E44;
    color: #FFFFFF;
    border-color: #B35E44;
    transform: translateY(-2px);
}

.wf-formats-section .wf-comparison-box {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-left: 4px solid #5E694D;
    border-radius: 2px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.wf-formats-section .wf-comp-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F241E;
    margin-bottom: 0.4rem;
}

.wf-formats-section .wf-comp-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5E645A;
}

.wf-formats-section .wf-btn-outline {
    background: transparent;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.35);
    border-radius: 2px;
    padding: 0.85rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.wf-formats-section .wf-btn-outline:hover {
    background: #2C3527;
    color: #FDFBF7;
    border-color: #2C3527;
}

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

    .wf-formats-section .wf-title {
        font-size: 1.75rem;
    }

    .wf-formats-section .wf-card-title {
        font-size: 1.45rem;
    }

    .wf-formats-section .wf-card-for {
        min-height: auto;
    }

    .wf-formats-section .wf-toggle-wrapper {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .wf-formats-section .wf-toggle-btn {
        width: 100%;
        text-align: center;
    }

    .wf-formats-section .wf-comparison-box {
        padding: 1.5rem;
    }
}

/* ===== what_happens_after_start ===== */
.cooperation-timeline-block {
    background-color: #FAF8F5;
    color: #1F241E;
    position: relative;
    overflow: hidden;
}

.cooperation-timeline-block .timeline-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #C46D52;
}

.cooperation-timeline-block .timeline-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1F241E;
    letter-spacing: -0.02em;
}

.cooperation-timeline-block .timeline-lead-desc {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: #5E645A;
}

.cooperation-timeline-block .timeline-card {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.cooperation-timeline-block .timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.3);
}

.cooperation-timeline-block .timeline-card-accent {
    border-top: 3px solid #C46D52;
    background: #FFFFFF;
}

.cooperation-timeline-block .timeline-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2C3527;
    background: #F3EFEA;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.cooperation-timeline-block .timeline-badge-highlight {
    background: #C46D52;
    color: #FFFFFF;
}

.cooperation-timeline-block .timeline-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8C7A6B;
}

.cooperation-timeline-block .timeline-step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1F241E;
    margin-top: 0.5rem;
}

.cooperation-timeline-block .timeline-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C46D52;
    font-size: 1.25rem;
}

.cooperation-timeline-block .timeline-card-summary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5E645A;
}

.cooperation-timeline-block .timeline-list-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2C3527;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.cooperation-timeline-block .timeline-list-item i {
    color: #5E694D;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cooperation-timeline-block .timeline-card-footer {
    border-color: rgba(44, 53, 39, 0.08) !important;
}

.cooperation-timeline-block .timeline-status-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #8C7A6B;
    text-transform: uppercase;
}

.cooperation-timeline-block .timeline-status-tag i {
    font-size: 0.45rem;
    vertical-align: middle;
    color: #5E694D;
}

.cooperation-timeline-block .timeline-cta-box {
    background: #FFFFFF;
    border: 1px solid rgba(140, 122, 107, 0.15);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.cooperation-timeline-block .timeline-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1F241E;
    line-height: 1.25;
}

.cooperation-timeline-block .timeline-cta-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #5E645A;
    line-height: 1.65;
}

.cooperation-timeline-block .timeline-btn-primary {
    background: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.85rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cooperation-timeline-block .timeline-btn-primary:hover {
    background: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cooperation-timeline-block .timeline-btn-outline {
    background: transparent;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.35);
    border-radius: 2px;
    padding: 0.85rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cooperation-timeline-block .timeline-btn-outline:hover {
    background: #FAF8F5;
    border-color: #2C3527;
    color: #1B2218;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .cooperation-timeline-block .timeline-main-title {
        font-size: 1.85rem;
        hyphens: auto;
    }

    .cooperation-timeline-block .timeline-step-title {
        font-size: 1.4rem;
        hyphens: auto;
    }

    .cooperation-timeline-block .timeline-cta-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .cooperation-timeline-block .timeline-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ===== us_vs_typical_approach ===== */
.wealth-comparison-section {
    background-color: #FAF8F5;
    color: #1F241E;
    position: relative;
}

.wealth-comparison-section .wealth-comparison-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
}

.wealth-comparison-section .wealth-comparison-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-size: 2.25rem;
    color: #1F241E;
}

@media (min-width: 992px) {
    .wealth-comparison-section .wealth-comparison-title {
        font-size: 3.25rem;
    }
}

.wealth-comparison-section .wealth-comparison-subtitle {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #5E645A;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.wealth-comparison-section .wealth-comparison-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.wealth-comparison-section .wealth-comparison-table-header {
    background-color: #F3EFEA;
    border-bottom: 1px solid rgba(44, 53, 39, 0.1);
}

.wealth-comparison-section .wealth-header-col {
    padding: 1.25rem 1.5rem;
}

.wealth-comparison-section .wealth-col-feature {
    flex: 0 0 34%;
    width: 34%;
}

.wealth-comparison-section .wealth-col-primary {
    flex: 0 0 33%;
    width: 33%;
}

.wealth-comparison-section .wealth-col-typical {
    flex: 0 0 33%;
    width: 33%;
}

.wealth-comparison-section .wealth-premium-col {
    background-color: #FAF8F5;
    border-left: 1px solid rgba(196, 109, 82, 0.25);
    border-right: 1px solid rgba(196, 109, 82, 0.25);
}

.wealth-comparison-section .wealth-col-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5E645A;
}

.wealth-comparison-section .wealth-col-heading-bold {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2C3527;
    display: block;
}

.wealth-comparison-section .wealth-col-heading-muted {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8A9086;
}

.wealth-comparison-section .wealth-badge-featured {
    display: inline-block;
    background: #C46D52;
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.35rem;
}

.wealth-comparison-section .wealth-comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    transition: background-color 0.3s ease;
}

.wealth-comparison-section .wealth-comparison-row:last-child {
    border-bottom: none;
}

.wealth-comparison-section .wealth-comparison-row:hover {
    background-color: #FCFBF9;
}

.wealth-comparison-section .wealth-comparison-row>div {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .wealth-comparison-section .wealth-comparison-row {
        flex-direction: row;
        align-items: stretch;
    }

    .wealth-comparison-section .wealth-comparison-row>div {
        padding: 1.75rem 1.5rem;
    }
}

.wealth-comparison-section .wealth-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 2px;
    background: #F3EFEA;
    color: #2C3527;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.wealth-comparison-section .wealth-feature-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F241E;
    line-height: 1.35;
}

.wealth-comparison-section .wealth-feature-subtext {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    color: #8A9086;
    display: block;
    margin-top: 0.2rem;
}

.wealth-comparison-section .wealth-status-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.wealth-comparison-section .text-accent {
    color: #C46D52;
}

.wealth-comparison-section .text-muted-custom {
    color: #8A9086;
}

.wealth-comparison-section .wealth-highlight-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    color: #1F241E;
    font-weight: 600;
}

.wealth-comparison-section .wealth-typical-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    color: #5E645A;
    font-weight: 600;
}

.wealth-comparison-section .wealth-desc-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5E645A;
}

.wealth-comparison-section .wealth-mobile-badge-our {
    display: inline-block;
    background: rgba(196, 109, 82, 0.15);
    color: #C46D52;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wealth-comparison-section .wealth-mobile-badge-typical {
    display: inline-block;
    background: rgba(138, 144, 134, 0.15);
    color: #5E645A;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wealth-comparison-section .wealth-btn-primary {
    background: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.9rem 2.25rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
}

.wealth-comparison-section .wealth-btn-primary:hover {
    background: #4A5543;
    color: #FFFFFF;
    border-color: #4A5543;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 53, 39, 0.15);
}

@media (max-width: 767.98px) {
    .wealth-comparison-section .wealth-comparison-title {
        font-size: 1.75rem;
    }

    .wealth-comparison-section .wealth-comparison-row>div {
        border-bottom: 1px dashed rgba(44, 53, 39, 0.08);
    }

    .wealth-comparison-section .wealth-comparison-row>div:last-child {
        border-bottom: none;
    }
}

/* ===== our_services ===== */
.services-grid-section {
    background-color: #FAF8F5;
    color: #1F241E;
    position: relative;
    overflow: hidden;
}

.services-grid-section .services-grid-eyebrow {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
    background-color: rgba(196, 109, 82, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(196, 109, 82, 0.2);
}

.services-grid-section .services-grid-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1F241E;
    letter-spacing: -0.02em;
}

.services-grid-section .services-grid-lead {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5E645A;
    max-width: 680px;
}

.services-grid-section .services-grid-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.services-grid-section .services-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.3);
}

.services-grid-section .services-grid-card-media {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.services-grid-section .services-grid-card-img {
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.services-grid-section .services-grid-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(44, 53, 39, 0.85);
    color: #FDFBF7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.services-grid-section .services-grid-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.services-grid-section .services-grid-card-title a {
    color: #1F241E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-grid-section .services-grid-card-title a:hover {
    color: #C46D52;
}

.services-grid-section .services-grid-card-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.925rem;
    line-height: 1.65;
    color: #5E645A;
}

.services-grid-section .border-top {
    border-color: rgba(44, 53, 39, 0.08) !important;
}

.services-grid-section .services-grid-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2C3527;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.services-grid-section .services-grid-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.services-grid-section .services-grid-card:hover .services-grid-btn {
    color: #C46D52;
}

.services-grid-section .services-grid-card:hover .services-grid-btn i {
    transform: translateX(4px);
}

.services-grid-section .services-grid-main-cta {
    background-color: #2C3527;
    color: #FDFBF7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    border: 1px solid #2C3527;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.services-grid-section .services-grid-main-cta:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .services-grid-section .services-grid-title {
        font-size: 1.85rem;
        hyphens: auto;
    }

    .services-grid-section .services-grid-card-title {
        font-size: 1.35rem;
        hyphens: auto;
    }

    .services-grid-section .services-grid-card-img {
        height: 190px;
    }
}

/* ===== electrical_installation ===== */
.electrical-installation-grid {
    background-color: #FAF8F5;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.electrical-installation-grid__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
}

.electrical-installation-grid__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #2C3527;
    letter-spacing: -0.02em;
}

.electrical-installation-grid__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5E645A;
    font-weight: 400;
}

.electrical-installation-grid__card {
    background: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.electrical-installation-grid__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.3);
}

.electrical-installation-grid__image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #F3EFEA;
    aspect-ratio: 16 / 10;
}

.electrical-installation-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.electrical-installation-grid__card:hover .electrical-installation-grid__img {
    transform: scale(1.05);
}

.electrical-installation-grid__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.electrical-installation-grid__card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8C7A6B;
}

.electrical-installation-grid__card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2C3527;
}

.electrical-installation-grid__card-title-link {
    color: #2C3527;
    text-decoration: none;
    transition: color 0.3s ease;
}

.electrical-installation-grid__card-title-link:hover {
    color: #C46D52;
}

.electrical-installation-grid__card-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #5E645A;
}

.electrical-installation-grid__card-btn {
    display: inline-block;
    background-color: #FAF8F5;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.2);
    border-radius: 2px;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.electrical-installation-grid__card-btn:hover {
    background-color: #2C3527;
    color: #FDFBF7;
    border-color: #2C3527;
}

.electrical-installation-grid__action-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 1rem 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.electrical-installation-grid__action-btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .electrical-installation-grid__title {
        font-size: 16px;
        hyphens: auto;
    }

    .electrical-installation-grid__card-title {
        font-size: 14px;
    }

    .electrical-installation-grid__subtitle {
        font-size: 0.9rem;
    }

    .electrical-installation-grid__card-body {
        padding: 1.25rem !important;
    }
}

/* ===== ready_solutions ===== */
.solutions-grid-section {
    background-color: #FAF8F5;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.solutions-grid-section .solutions-grid-section__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C46D52;
}

.solutions-grid-section .solutions-grid-section__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1F241E;
    letter-spacing: -0.02em;
}

.solutions-grid-section .solutions-grid-section__divider {
    width: 60px;
    height: 2px;
    background-color: #C46D52;
}

.solutions-grid-section .solutions-grid-section__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5E645A;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid-section .solutions-grid-section__filter-btn {
    background-color: #FFFFFF;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.15);
    border-radius: 2px;
    padding: 0.65rem 1.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solutions-grid-section .solutions-grid-section__filter-btn:hover {
    background-color: #F3EFEA;
    border-color: #2C3527;
    color: #1F241E;
}

.solutions-grid-section .solutions-grid-section__filter-btn.active {
    background-color: #2C3527;
    border-color: #2C3527;
    color: #FDFBF7;
}

.solutions-grid-section .solutions-grid-section__card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.solutions-grid-section .solutions-grid-section__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09);
    border-color: rgba(196, 109, 82, 0.35);
}

.solutions-grid-section .solutions-grid-section__image-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #EBE5DC;
}

.solutions-grid-section .solutions-grid-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.solutions-grid-section .solutions-grid-section__card:hover .solutions-grid-section__img {
    transform: scale(1.04);
}

.solutions-grid-section .solutions-grid-section__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(44, 53, 39, 0.85);
    color: #FDFBF7;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.solutions-grid-section .solutions-grid-section__meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8C7A6B;
}

.solutions-grid-section .solutions-grid-section__meta i {
    color: #C46D52;
}

.solutions-grid-section .solutions-grid-section__card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1F241E;
    transition: color 0.3s ease;
}

.solutions-grid-section .solutions-grid-section__card-title-link:hover .solutions-grid-section__card-title {
    color: #C46D52;
}

.solutions-grid-section .solutions-grid-section__card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5E645A;
}

.solutions-grid-section .solutions-grid-section__specs {
    border-top: 1px solid rgba(44, 53, 39, 0.08);
    padding-top: 1rem;
}

.solutions-grid-section .solutions-grid-section__spec-item {
    font-size: 0.875rem;
    color: #2C3527;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
}

.solutions-grid-section .solutions-grid-section__spec-item i {
    color: #5E694D;
    font-size: 0.85rem;
}

.solutions-grid-section .solutions-grid-section__btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.85rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.solutions-grid-section .solutions-grid-section__btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.solutions-grid-section .solutions-grid-section__card.is-hidden {
    display: none !important;
}

@media (min-width: 992px) {
    .solutions-grid-section .solutions-grid-section__image-wrap {
        height: 280px;
    }
}

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

    .solutions-grid-section .solutions-grid-section__card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .solutions-grid-section .solutions-grid-section__image-wrap {
        height: 220px;
    }

    .solutions-grid-section .solutions-grid-section__filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100%;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #FAF8F5;
    border-top: 1px solid rgba(44, 53, 39, 0.1);
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    width: 100%
}

.site-footer__inner {
    padding: 4.5rem 0 2.5rem
}

.site-footer__top {
    margin-bottom: 3rem
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.site-footer__logo-link {
    align-items: center;
    display: inline-flex;
    gap: 0.875rem;
    text-decoration: none
}

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

.site-footer__brand-name {
    color: #2C3527;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2
}

.site-footer__description {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
    max-width: 340px
}

.site-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.site-footer__heading {
    border-bottom: 1px solid rgba(196, 109, 82, 0.3);
    color: #2C3527;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer__link {
    color: #5E645A;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #C46D52;
    text-decoration: none;
    transform: translateX(3px)
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0
}

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

.site-footer__contact-icon {
    color: #C46D52;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    min-width: 18px;
    text-align: center
}

.site-footer__contact-text {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0
}

.site-footer__contact-link {
    color: #5E645A;
    word-break: break-word
}

.site-footer__wa-link {
    color: #2C3527;
    font-weight: 600
}

.site-footer__wa-link:hover {
    color: #C46D52
}

.site-footer__divider {
    background-color: rgba(44, 53, 39, 0.08);
    height: 1px;
    margin-bottom: 2rem;
    width: 100%
}

.site-footer__bottom {
    padding-top: 0.5rem
}

.site-footer__copyright {
    color: #8A9086;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0
}

.site-footer__legal-links {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center
}

.site-footer__legal-link {
    color: #8A9086;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus {
    color: #2C3527;
    text-decoration: underline
}

.site-footer__legal-separator {
    color: rgba(44, 53, 39, 0.2);
    font-size: 0.75rem
}

@media (max-width:767.98px) {
    .site-footer__inner {
        padding: 3.5rem 0 2rem
    }

    .site-footer__top {
        margin-bottom: 2rem
    }

    .site-footer__heading {
        font-size: 0.8125rem
    }

    .site-footer__brand-name {
        font-size: 1.5rem
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem
    }
}

/* ===== PAGE: services ===== */
.luxury-services-section { background-color: #FAF8F5; color: #1F241E; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.luxury-services-section .luxury-services-badge { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: #C46D52; font-weight: 600; background-color: rgba(196, 109, 82, 0.1); padding: 0.4rem 1rem; border-radius: 2px; border: 1px solid rgba(196, 109, 82, 0.25); }
.luxury-services-section .luxury-services-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3.25rem; font-weight: 400; color: #1F241E; line-height: 1.15; letter-spacing: -0.02em; }
@media (max-width: 767.98px) { .luxury-services-section .luxury-services-main-title { font-size: 2.15rem; } }
.luxury-services-section .luxury-services-divider { width: 60px; height: 1px; background-color: #C46D52; }
.luxury-services-section .luxury-services-lead-text { font-size: 1.125rem; line-height: 1.8; color: #5E645A; font-weight: 300; max-width: 780px; }
.luxury-services-section .luxury-service-card { background: #FFFFFF; border: 1px solid rgba(44, 53, 39, 0.08); border-radius: 2px; box-shadow: 0 10px 30px rgba(44, 53, 39, 0.03); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease; }
.luxury-services-section .luxury-service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(44, 53, 39, 0.08); border-color: rgba(196, 109, 82, 0.4); }
.luxury-services-section .luxury-card-img-wrap { position: relative; overflow: hidden; height: 230px; background-color: #F3EFEA; }
.luxury-services-section .luxury-service-img { width: 100%; height: 230px; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.luxury-services-section .luxury-service-card:hover .luxury-service-img { transform: scale(1.04); }
.luxury-services-section .luxury-service-index { position: absolute; top: 1rem; right: 1rem; background-color: rgba(253, 251, 247, 0.92); color: #2C3527; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.9rem; font-weight: 600; padding: 0.2rem 0.6rem; border: 1px solid rgba(44, 53, 39, 0.1); border-radius: 2px; }
.luxury-services-section .luxury-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.85rem; font-weight: 500; line-height: 1.25; }
.luxury-services-section .luxury-card-link { color: #1F241E; text-decoration: none; transition: color 0.3s ease; }
.luxury-services-section .luxury-card-link:hover { color: #C46D52; }
.luxury-services-section .luxury-card-desc { font-size: 0.9375rem; line-height: 1.7; color: #5E645A; }
.luxury-services-section .luxury-text-link { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #2C3527; text-decoration: none; border-bottom: 1px solid #C46D52; padding-bottom: 2px; transition: color 0.3s ease, border-color 0.3s ease; }
.luxury-services-section .luxury-text-link:hover { color: #C46D52; }
.luxury-services-section .luxury-btn-select { background: transparent; border: 1px solid rgba(44, 53, 39, 0.25); color: #2C3527; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 1rem; border-radius: 2px; cursor: pointer; transition: all 0.3s ease; }
.luxury-services-section .luxury-btn-select:hover, .luxury-services-section .luxury-btn-select.active { background-color: #2C3527; color: #FFFFFF; border-color: #2C3527; }
.luxury-services-section .luxury-order-block { background-color: #FFFFFF; border: 1px solid rgba(44, 53, 39, 0.12); border-radius: 2px; box-shadow: 0 15px 35px rgba(44, 53, 39, 0.04); }
.luxury-services-section .luxury-form-badge { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: #5E694D; font-weight: 600; background-color: rgba(94, 105, 77, 0.1); padding: 0.35rem 0.9rem; border-radius: 2px; border: 1px solid rgba(94, 105, 77, 0.2); }
.luxury-services-section .luxury-form-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; color: #1F241E; font-weight: 500; }
@media (max-width: 767.98px) { .luxury-services-section .luxury-form-title { font-size: 1.75rem; } }
.luxury-services-section .luxury-form-desc { font-size: 0.95rem; color: #5E645A; line-height: 1.65; max-width: 680px; margin: 0 auto; }
.luxury-services-section .luxury-service-selector-display { background-color: #FAF8F5; border: 1px dashed rgba(44, 53, 39, 0.2); border-radius: 2px; }
.luxury-services-section .luxury-form-label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #2C3527; display: block; }
.luxury-services-section .luxury-input { background-color: #FAF8F5; border: 1px solid rgba(44, 53, 39, 0.15); border-radius: 2px; color: #1F241E; font-size: 0.9375rem; padding: 0.75rem 1rem; transition: border-color 0.3s ease, background-color 0.3s ease; }
.luxury-services-section .luxury-input:focus { background-color: #FFFFFF; border-color: #C46D52; box-shadow: 0 0 0 3px rgba(196, 109, 82, 0.12); color: #1F241E; outline: none; }
.luxury-services-section .luxury-input::placeholder { color: #8A9086; opacity: 1; }
.luxury-services-section .luxury-btn-submit { background-color: #C46D52; color: #FFFFFF; border: 1px solid #C46D52; border-radius: 2px; padding: 1rem 3rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; }
.luxury-services-section .luxury-btn-submit:hover { background-color: #B35E44; border-color: #B35E44; color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(196, 109, 82, 0.25); }
.luxury-services-section .luxury-security-note { font-size: 0.8125rem; color: #8A9086; }

/* ===== PAGE: electrical-installation ===== */
.electrical-catalog-block {
  background-color: #FAF8F5;
  color: #1F241E;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.electrical-catalog-block__badge {
  background-color: #5E694D;
  color: #FFFFFF;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 2px;
}

.electrical-catalog-block__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  color: #2C3527;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.electrical-catalog-block__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #5E645A;
  max-width: 720px;
}

.electrical-catalog-block__card {
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 53, 39, 0.08);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
}

.electrical-catalog-block__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(44, 53, 39, 0.09);
  border-color: rgba(196, 109, 82, 0.4);
}

.electrical-catalog-block__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background-color: #F7F4EF;
  color: #C46D52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.electrical-catalog-block__card:hover .electrical-catalog-block__icon-wrap {
  background-color: #2C3527;
  color: #FFFFFF;
}

.electrical-catalog-block__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #2C3527;
}

.electrical-catalog-block__card-link {
  color: #2C3527;
  text-decoration: none;
  transition: color 0.25s ease;
}

.electrical-catalog-block__card-link:hover {
  color: #C46D52;
}

.electrical-catalog-block__card-text {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #5E645A;
}

.electrical-catalog-block__detail-btn {
  color: #2C3527;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(44, 53, 39, 0.2);
  display: inline-block;
  transition: border-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.electrical-catalog-block__detail-btn:hover {
  color: #C46D52;
  border-bottom-color: #C46D52;
  padding-left: 4px;
}

.electrical-catalog-block__select-btn {
  background-color: #2C3527;
  color: #FDFBF7;
  border: 1px solid #2C3527;
  border-radius: 2px;
  padding: 0.65rem 1rem;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.electrical-catalog-block__select-btn:hover {
  background-color: #C46D52;
  border-color: #C46D52;
  color: #FFFFFF;
}

.electrical-catalog-block__review-box {
  background-color: #FFFFFF;
  border: 1px solid rgba(140, 122, 107, 0.18);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.electrical-catalog-block__stars {
  color: #D8C3A5;
  font-size: 1.1rem;
}

.electrical-catalog-block__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  color: #2C3527;
  line-height: 1.5;
}

.electrical-catalog-block__author {
  font-size: 0.9rem;
  color: #5E645A;
}

.electrical-catalog-block__info-card {
  background-color: #2C3527;
  color: #FDFBF7;
  border-radius: 2px;
}

.electrical-catalog-block__info-badge {
  background-color: #C46D52;
  color: #FFFFFF;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
}

.electrical-catalog-block__info-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.15rem;
  font-weight: 500;
  color: #FDFBF7;
}

.electrical-catalog-block__info-text {
  color: #D5D8D0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.electrical-catalog-block__feature-list li {
  font-size: 0.9rem;
  color: #FDFBF7;
}

.electrical-catalog-block__feature-list i {
  color: #DF947E;
}

.electrical-catalog-block__featured-img {
  border-radius: 2px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(253, 251, 247, 0.15);
}

.electrical-catalog-block__form-wrapper {
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 53, 39, 0.1);
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.electrical-catalog-block__form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2C3527;
}

.electrical-catalog-block__form-subtitle {
  color: #5E645A;
  font-size: 0.925rem;
}

.electrical-catalog-block__service-badge {
  background-color: #F3EFEA;
  color: #2C3527;
  border: 1px solid rgba(44, 53, 39, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}

.electrical-catalog-block__label {
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2C3527;
  margin-bottom: 0.35rem;
}

.electrical-catalog-block__input,
.electrical-catalog-block__select,
.electrical-catalog-block__textarea {
  background-color: #FAF8F5;
  border: 1px solid rgba(44, 53, 39, 0.18);
  border-radius: 2px;
  color: #1F241E;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.electrical-catalog-block__input:focus,
.electrical-catalog-block__select:focus,
.electrical-catalog-block__textarea:focus {
  background-color: #FFFFFF;
  border-color: #C46D52;
  color: #1F241E;
  box-shadow: 0 0 0 0.2rem rgba(196, 109, 82, 0.15);
}

.electrical-catalog-block__input::placeholder,
.electrical-catalog-block__textarea::placeholder {
  color: #8A9086;
  opacity: 1;
}

.electrical-catalog-block__submit-btn {
  background-color: #C46D52;
  color: #FFFFFF;
  border: 1px solid #C46D52;
  border-radius: 2px;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

.electrical-catalog-block__submit-btn:hover {
  background-color: #B35E44;
  border-color: #B35E44;
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .electrical-catalog-block__title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .electrical-catalog-block__card-title {
    font-size: 0.875rem;
  }
  .electrical-catalog-block__info-title,
  .electrical-catalog-block__form-title {
    font-size: 1rem;
  }
  .electrical-catalog-block__quote {
    font-size: 1.1rem;
  }
  .electrical-catalog-block__submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== PAGE: ready-solutions ===== */
.solutions-catalog-page { background-color: #FAF8F5; color: #1F241E; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.solutions-catalog-page__intro { max-width: 820px; }
.solutions-catalog-page__badge { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: #C46D52; background-color: #F7F4EF; border: 1px solid rgba(196, 109, 82, 0.35); padding: 0.35rem 1rem; border-radius: 2px; }
.solutions-catalog-page__title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 400; line-height: 1.2; color: #1F241E; letter-spacing: -0.02em; }
.solutions-catalog-page__lead { font-size: 1.15rem; font-weight: 300; line-height: 1.8; color: #5E645A; }
.solutions-catalog-page__card { background-color: #FFFFFF; border: 1px solid rgba(44, 53, 39, 0.08); border-radius: 2px; box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease; overflow: hidden; }
.solutions-catalog-page__card:hover { transform: translateY(-6px); box-shadow: 0 25px 45px rgba(44, 53, 39, 0.09); border-color: rgba(196, 109, 82, 0.3); }
.solutions-catalog-page__image-wrapper { position: relative; width: 100%; height: 260px; overflow: hidden; background-color: #EBE5DC; }
.solutions-catalog-page__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.solutions-catalog-page__card:hover .solutions-catalog-page__img { transform: scale(1.03); }
.solutions-catalog-page__tag { position: absolute; top: 1rem; right: 1rem; background-color: rgba(250, 248, 245, 0.9); backdrop-filter: blur(4px); color: #2C3527; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.75rem; border: 1px solid rgba(44, 53, 39, 0.12); border-radius: 2px; }
.solutions-catalog-page__card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1.3; }
.solutions-catalog-page__card-link { color: #1F241E; text-decoration: none; transition: color 0.3s ease; }
.solutions-catalog-page__card-link:hover { color: #C46D52; }
.solutions-catalog-page__card-text { font-size: 0.95rem; line-height: 1.75; color: #5E645A; }
.solutions-catalog-page__specs { font-size: 0.875rem; color: #2C3527; }
.solutions-catalog-page__spec-icon { color: #C46D52; width: 18px; }
.solutions-catalog-page__btn-outline { display: inline-block; background-color: transparent; color: #2C3527; border: 1px solid rgba(44, 53, 39, 0.35); border-radius: 2px; padding: 0.75rem 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
.solutions-catalog-page__btn-outline:hover { background-color: #FAF8F5; border-color: #2C3527; color: #1B2218; }
.solutions-catalog-page__btn-primary { display: inline-block; background-color: #2C3527; color: #FDFBF7; border: 1px solid #2C3527; border-radius: 2px; padding: 0.75rem 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; }
.solutions-catalog-page__btn-primary:hover { background-color: #4A5543; border-color: #4A5543; color: #FFFFFF; transform: translateY(-2px); }
.solutions-catalog-page__order-section { background-color: #FFFFFF; border: 1px solid rgba(44, 53, 39, 0.1); border-radius: 2px; box-shadow: 0 10px 30px rgba(44, 53, 39, 0.05); }
.solutions-catalog-page__order-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; font-weight: 500; color: #1F241E; line-height: 1.3; }
.solutions-catalog-page__order-desc { font-size: 1rem; line-height: 1.75; color: #5E645A; }
.solutions-catalog-page__order-icon-box { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background-color: #F7F4EF; border: 1px solid rgba(196, 109, 82, 0.25); color: #C46D52; border-radius: 2px; flex-shrink: 0; }
.solutions-catalog-page__order-sub { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #1F241E; }
.solutions-catalog-page__order-meta { font-size: 0.85rem; color: #8A9086; }
.solutions-catalog-page__form-box { background-color: #FAF8F5; border: 1px solid rgba(140, 122, 107, 0.15); border-radius: 2px; }
.solutions-catalog-page__form-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 600; color: #1F241E; letter-spacing: 0.02em; }
.solutions-catalog-page__label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #2C3527; }
.solutions-catalog-page__input { background-color: #FFFFFF; border: 1px solid rgba(44, 53, 39, 0.15); border-radius: 2px; color: #1F241E; font-size: 0.95rem; padding: 0.75rem 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.solutions-catalog-page__input:focus { background-color: #FFFFFF; border-color: #C46D52; box-shadow: 0 0 0 0.2rem rgba(196, 109, 82, 0.15); color: #1F241E; outline: none; }
.solutions-catalog-page__input::placeholder { color: #8A9086; opacity: 1; }
.solutions-catalog-page__btn-accent { background-color: #C46D52; color: #FFFFFF; border: 1px solid #C46D52; border-radius: 2px; padding: 1rem 2.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; }
.solutions-catalog-page__btn-accent:hover { background-color: #B35E44; border-color: #B35E44; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(196, 109, 82, 0.25); color: #FFFFFF; }
@media (max-width: 767.98px) { .solutions-catalog-page__title { font-size: 2.25rem; hyphens: auto; } .solutions-catalog-page__order-title { font-size: 1.75rem; hyphens: auto; } .solutions-catalog-page__image-wrapper { height: 210px; } }

/* ===== PAGE: contact ===== */
.contact-page-section{background-color:#FAF8F5;color:#1F241E;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif}.contact-page-section .contact-badge{display:inline-block;font-size:0.75rem;font-weight:600;letter-spacing:0.2em;color:#C46D52;padding:0.35rem 1rem;background-color:#FFFFFF;border:1px solid rgba(196,109,82,0.3);border-radius:2px}.contact-page-section .contact-main-heading{font-family:'Cormorant Garamond',Georgia,serif;font-weight:400;font-size:3rem;line-height:1.2;color:#1F241E;letter-spacing:-0.02em}.contact-page-section .contact-lead-text{font-size:1.05rem;line-height:1.7;max-width:680px;margin-left:auto;margin-right:auto;color:#5E645A!important}.contact-page-section .contact-info-card{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;box-shadow:0 10px 30px rgba(44,53,39,0.04)}.contact-page-section .contact-form-card{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;box-shadow:0 10px 30px rgba(44,53,39,0.04)}.contact-page-section .contact-card-title{font-family:'Cormorant Garamond',Georgia,serif;font-weight:500;font-size:2rem;line-height:1.3;color:#2C3527}.contact-page-section .contact-info-intro{font-size:0.9375rem;line-height:1.65;color:#5E645A!important}.contact-page-section .contact-icon-box{width:42px;height:42px;background-color:#FAF8F5;border:1px solid rgba(140,122,107,0.2);color:#2C3527;font-size:1rem;border-radius:2px}.contact-page-section .contact-item-label{font-size:0.8125rem;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;color:#8C7A6B}.contact-page-section .contact-item-val{font-size:0.9375rem;color:#1F241E;line-height:1.5}.contact-page-section .contact-link{color:#2C3527;font-size:0.9375rem;text-decoration:none;font-weight:500;transition:color 0.25s ease}.contact-page-section .contact-link:hover{color:#C46D52;text-decoration:underline}.contact-page-section .contact-subheading{font-size:0.875rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:#2C3527}.contact-page-section .contact-form-lead{font-size:0.9375rem;color:#5E645A!important}.contact-page-section .contact-label{font-size:0.8125rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;color:#2C3527;margin-bottom:0.35rem;display:block}.contact-page-section .contact-input,.contact-page-section .contact-select,.contact-page-section .contact-textarea{background-color:#FAF8F5;border:1px solid rgba(44,53,39,0.15);border-radius:2px;color:#1F241E;font-size:0.9375rem;padding:0.75rem 1rem;transition:border-color 0.25s ease,box-shadow 0.25s ease}.contact-page-section .contact-input:focus,.contact-page-section .contact-select:focus,.contact-page-section .contact-textarea:focus{background-color:#FFFFFF;border-color:#C46D52;box-shadow:0 0 0 3px rgba(196,109,82,0.15);color:#1F241E;outline:none}.contact-page-section .contact-input::placeholder,.contact-page-section .contact-textarea::placeholder{color:#8A9086;opacity:1}.contact-page-section .contact-submit-btn{background-color:#2C3527;color:#FDFBF7;border:1px solid #2C3527;border-radius:2px;padding:0.875rem 2.25rem;font-size:0.8125rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;transition:all 0.3s ease;cursor:pointer}.contact-page-section .contact-submit-btn:hover{background-color:#C46D52;border-color:#C46D52;color:#FFFFFF;transform:translateY(-2px)}.contact-page-section .contact-privacy-note{font-size:0.8125rem;color:#8A9086!important}.contact-page-section .contact-pillar-card{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;box-shadow:0 6px 20px rgba(44,53,39,0.03);transition:transform 0.3s ease,box-shadow 0.3s ease}.contact-page-section .contact-pillar-card:hover{transform:translateY(-4px);box-shadow:0 15px 35px rgba(44,53,39,0.08)}.contact-page-section .contact-pillar-icon{font-size:1.75rem;color:#C46D52}.contact-page-section .contact-pillar-title{font-family:'Cormorant Garamond',Georgia,serif;font-weight:600;font-size:1.35rem;color:#2C3527}.contact-page-section .contact-pillar-desc{font-size:0.875rem;line-height:1.6;color:#5E645A!important}@media (max-width:767.98px){.contact-page-section .contact-main-heading{font-size:1.125rem}.contact-page-section .contact-card-title{font-size:1rem}.contact-page-section .contact-pillar-title{font-size:0.875rem}.contact-page-section .contact-item-label,.contact-page-section .contact-subheading{font-size:0.875rem}.contact-page-section .contact-lead-text{font-size:0.9rem}.contact-page-section .contact-submit-btn{width:100%;text-align:center}}

/* ===== PAGE: privacy ===== */
.privacy-editorial-section {
  background-color: #FAF8F5;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1F241E;
}

.privacy-editorial-section .privacy-badge {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C46D52;
  font-weight: 600;
}

.privacy-editorial-section .privacy-toc-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 53, 39, 0.08);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.privacy-editorial-section .privacy-toc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C3527;
  line-height: 1.2;
}

.privacy-editorial-section .privacy-toc-link {
  color: #5E645A;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.privacy-editorial-section .privacy-toc-link:hover,
.privacy-editorial-section .privacy-toc-link.active {
  color: #C46D52;
  background-color: #FAF8F5;
  border-left-color: #C46D52;
}

.privacy-editorial-section .privacy-toc-meta {
  font-size: 0.8rem;
  color: #8A9086;
}

.privacy-editorial-section .privacy-content-wrapper {
  border: 1px solid rgba(44, 53, 39, 0.08);
  background-color: #FFFFFF;
}

.privacy-editorial-section .privacy-main-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #2C3527;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .privacy-editorial-section .privacy-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .privacy-editorial-section .privacy-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .privacy-editorial-section .privacy-subcard-title,
  .privacy-editorial-section .privacy-highlight-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.privacy-editorial-section .privacy-lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5E645A;
  font-weight: 300;
}

.privacy-editorial-section .privacy-step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #C46D52;
  border: 1px solid rgba(196, 109, 82, 0.3);
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #FAF8F5;
}

.privacy-editorial-section .privacy-section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #2C3527;
  letter-spacing: -0.01em;
}

.privacy-editorial-section .privacy-paragraph {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5E645A;
}

.privacy-editorial-section .privacy-subcard {
  background-color: #FAF8F5;
  border: 1px solid rgba(44, 53, 39, 0.08);
  border-radius: 2px;
}

.privacy-editorial-section .privacy-subcard-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2C3527;
}

.privacy-editorial-section .privacy-subcard-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5E645A;
}

.privacy-editorial-section .privacy-highlight-box {
  background: linear-gradient(135deg, #FAF8F5 0%, #F3EFEA 100%);
  border-left: 3px solid #C46D52;
  border-radius: 2px;
}

.privacy-editorial-section .privacy-highlight-icon {
  color: #C46D52;
}

.privacy-editorial-section .privacy-highlight-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C3527;
}

.privacy-editorial-section .privacy-highlight-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5E645A;
}

.privacy-editorial-section .privacy-list {
  list-style-type: square;
  color: #5E645A;
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-editorial-section .privacy-list strong {
  color: #2C3527;
}

.privacy-editorial-section .privacy-editorial-link {
  color: #2C3527;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #C46D52;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.privacy-editorial-section .privacy-editorial-link:hover {
  color: #C46D52;
  padding-right: 4px;
}

.privacy-editorial-section .text-accent {
  color: #C46D52 !important;
}

.privacy-editorial-section .privacy-contact-box {
  background-color: #FAF8F5;
  border: 1px solid rgba(44, 53, 39, 0.1);
}

.privacy-editorial-section .privacy-btn-primary {
  background-color: #2C3527;
  color: #FDFBF7;
  border: 1px solid #2C3527;
  border-radius: 2px;
  padding: 0.85rem 1.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-editorial-section .privacy-btn-primary:hover {
  background-color: #C46D52;
  border-color: #C46D52;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===== PAGE: terms ===== */
.terms-content-section{background-color:#FAF8F5;color:#1F241E;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif}.terms-content-section .terms-sidebar-sticky{position:sticky;top:2rem}.terms-content-section .terms-summary-card{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;box-shadow:0 10px 30px rgba(44,53,39,0.04)}.terms-content-section .terms-badge{display:inline-flex;align-items:center;padding:0.35rem 0.85rem;background:#F3EFEA;border:1px solid rgba(140,122,107,0.2);border-radius:2px;font-size:0.75rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:#2C3527}.terms-content-section .terms-sidebar-title{font-family:'Cormorant Garamond',Georgia,serif;font-weight:600;color:#2C3527;line-height:1.2}.terms-content-section .terms-search-box .input-group-text{border-color:rgba(44,53,39,0.15);color:#5E645A}.terms-content-section .terms-search-box .form-control{border-color:rgba(44,53,39,0.15);background-color:#FFFFFF;color:#1F241E;font-size:0.875rem}.terms-content-section .terms-search-box .form-control:focus{border-color:#C46D52;box-shadow:0 0 0 0.2rem rgba(196,109,82,0.15)}.terms-content-section .terms-search-box .form-control::placeholder{color:#8A9086}.terms-content-section .terms-toc-heading{font-size:0.75rem;letter-spacing:0.15em;color:#8A9086}.terms-content-section .terms-nav-link{display:block;padding:0.6rem 0.85rem;font-size:0.875rem;color:#5E645A;border-left:2px solid transparent;text-decoration:none;transition:all 0.3s cubic-bezier(0.25,1,0.5,1);margin-bottom:0.25rem}.terms-content-section .terms-nav-link:hover{color:#2C3527;background-color:#FAF8F5;border-left-color:#8C7A6B;padding-left:1.1rem}.terms-content-section .terms-nav-link.active{color:#2C3527;font-weight:600;background-color:#F7F4EF;border-left-color:#C46D52}.terms-content-section .terms-support-box{background:#FAF8F5;border:1px dashed rgba(140,122,107,0.3);border-radius:2px}.terms-content-section .terms-contact-btn{background:#2C3527;color:#FDFBF7;border:1px solid #2C3527;border-radius:2px;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;padding:0.6rem 1.25rem;transition:all 0.3s ease}.terms-content-section .terms-contact-btn:hover{background:#4A5543;color:#FFFFFF;border-color:#4A5543}.terms-content-section .terms-document-body{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;box-shadow:0 10px 30px rgba(44,53,39,0.04)}.terms-content-section .terms-intro-callout{background:#F7F4EF;border-left:3px solid #C46D52;border-radius:2px}.terms-content-section .terms-intro-callout h2{color:#2C3527;font-family:'Cormorant Garamond',Georgia,serif;font-weight:600}.terms-content-section .terms-callout-icon{color:#C46D52}.terms-content-section .terms-article{position:relative;border-bottom:1px solid rgba(44,53,39,0.08);padding-bottom:2.5rem}.terms-content-section .terms-article:last-child{border-bottom:none;padding-bottom:0}.terms-content-section .terms-clause-number{font-size:0.75rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:#C46D52;display:block;margin-bottom:0.25rem}.terms-content-section .terms-article-title{font-family:'Cormorant Garamond',Georgia,serif;font-weight:600;color:#2C3527;line-height:1.25}.terms-content-section .terms-text{font-size:0.95rem;line-height:1.75;color:#5E645A;margin-bottom:1rem}.terms-content-section .terms-bullet-list{padding-left:1.25rem;color:#5E645A;font-size:0.95rem;line-height:1.7}.terms-content-section .terms-bullet-list li{margin-bottom:0.5rem}.terms-content-section .terms-inline-link{color:#2C3527;font-weight:600;text-decoration:none;border-bottom:1px solid #C46D52;padding-bottom:1px;transition:all 0.2s ease}.terms-content-section .terms-inline-link:hover{color:#C46D52}.terms-content-section .terms-subcard{background:#FAF8F5;border:1px solid rgba(44,53,39,0.08);border-radius:2px}.terms-content-section .terms-contact-card{background:#F7F4EF;border:1px solid rgba(140,122,107,0.2);border-radius:2px}.terms-content-section .terms-contact-icon{width:36px;height:36px;background:#FFFFFF;border:1px solid rgba(44,53,39,0.1);display:flex;align-items:center;justify-content:center;border-radius:2px}.terms-content-section .terms-article.d-none{display:none!important}@media (max-width:767.98px){.terms-content-section .terms-sidebar-sticky{position:static;margin-bottom:2rem}.terms-content-section .terms-sidebar-title{font-size:1.5rem}.terms-content-section .terms-article-title{font-size:1.35rem}.terms-content-section .terms-document-body{padding:1.5rem!important}}

/* ===== PAGE: disclaimer ===== */
.disclaimer-page-section{background-color:#FAF8F5;color:#1F241E;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;line-height:1.75;padding-top:3.5rem;padding-bottom:5rem}.disclaimer-page-section__badge{display:inline-flex;align-items:center;padding:0.4rem 0.85rem;background-color:#F3EFEA;color:#5E694D;border-radius:2px;font-size:0.75rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:1.25rem}.disclaimer-page-section__nav-card{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;padding:2rem 1.5rem;box-shadow:0 10px 30px rgba(44,53,39,0.03);position:sticky;top:2rem}.disclaimer-page-section__nav-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.35rem;font-weight:600;color:#1F241E;margin-bottom:1.25rem;padding-bottom:0.75rem;border-bottom:1px solid rgba(44,53,39,0.08)}.disclaimer-page-section__nav-list{display:flex;flex-direction:column;gap:0.35rem}.disclaimer-page-section__nav-link{display:flex;align-items:center;gap:0.75rem;padding:0.65rem 0.85rem;font-size:0.875rem;color:#5E645A;text-decoration:none;border-radius:2px;transition:all 0.3s ease;border-left:2px solid transparent}.disclaimer-page-section__nav-link:hover{background-color:#FAF8F5;color:#C46D52;border-left-color:#C46D52}.disclaimer-page-section__nav-link.active{background-color:#F3EFEA;color:#2C3527;font-weight:600;border-left-color:#2C3527}.disclaimer-page-section__nav-num{font-family:'Cormorant Garamond',Georgia,serif;font-size:0.95rem;font-weight:600;color:#8C7A6B}.disclaimer-page-section__quick-box{background-color:#FAF8F5;border:1px solid rgba(140,122,107,0.15);padding:1.25rem;border-radius:2px}.disclaimer-page-section__quick-label{font-size:0.8125rem;font-weight:700;color:#2C3527;margin-bottom:0.35rem;text-transform:uppercase;letter-spacing:0.05em}.disclaimer-page-section__quick-text{font-size:0.8125rem;color:#5E645A;margin-bottom:0.85rem;line-height:1.5}.disclaimer-page-section__contact-btn{display:block;text-align:center;background:#2C3527;color:#FDFBF7;border:1px solid #2C3527;border-radius:2px;padding:0.6rem 1rem;font-size:0.75rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;transition:all 0.3s ease}.disclaimer-page-section__contact-btn:hover{background:#4A5543;color:#FFFFFF;border-color:#4A5543}.disclaimer-page-section__content-body{background:#FFFFFF;border:1px solid rgba(44,53,39,0.08);border-radius:2px;padding:3rem 2.5rem;box-shadow:0 10px 30px rgba(44,53,39,0.04)}.disclaimer-page-section__eyebrow{font-size:0.75rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:#C46D52;display:block;margin-bottom:0.75rem}.disclaimer-page-section__main-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:2.75rem;font-weight:400;color:#1F241E;line-height:1.2;margin-bottom:1.25rem;letter-spacing:-0.02em}.disclaimer-page-section__lead{font-size:1.1rem;font-weight:300;color:#5E645A;line-height:1.8;margin-bottom:1.5rem}.disclaimer-page-section__meta{font-size:0.8125rem;color:#8A9086;padding-bottom:1.75rem;border-bottom:1px solid rgba(44,53,39,0.08)}.disclaimer-page-section__block{padding-top:2.25rem;padding-bottom:2.25rem;border-bottom:1px solid rgba(44,53,39,0.06)}.disclaimer-page-section__block:last-child{border-bottom:none;padding-bottom:0}.disclaimer-page-section__section-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.75rem;font-weight:500;color:#1F241E;line-height:1.3;margin-bottom:1rem;display:flex;align-items:center;gap:0.75rem}.disclaimer-page-section__section-num{font-size:1.2rem;color:#C46D52;font-weight:400}.disclaimer-page-section__text{font-size:0.975rem;color:#5E645A;margin-bottom:1.15rem;line-height:1.75}.disclaimer-page-section__inline-link{color:#2C3527;font-weight:600;text-decoration:none;border-bottom:1px solid #C46D52;transition:all 0.2s ease}.disclaimer-page-section__inline-link:hover{color:#C46D52}.disclaimer-page-section__note-card{background:#FAF8F5;border-left:3px solid #C46D52;padding:1.5rem;margin:1.5rem 0;border-radius:0 2px 2px 0}.disclaimer-page-section__note-title{font-family:'Plus Jakarta Sans',sans-serif;font-size:0.95rem;font-weight:600;color:#2C3527;margin-bottom:0.5rem}.disclaimer-page-section__note-text{font-size:0.9rem;color:#5E645A;margin-bottom:0;line-height:1.6}.disclaimer-page-section__feature-list{list-style:none;padding-left:0;margin-bottom:1.25rem}.disclaimer-page-section__feature-list li{position:relative;padding-left:1.5rem;margin-bottom:0.75rem;font-size:0.95rem;color:#5E645A}.disclaimer-page-section__feature-list li::before{content:"\f00c";font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;left:0;top:2px;color:#5E694D;font-size:0.75rem}.disclaimer-page-section__action-card{background:linear-gradient(135deg,#FAF8F5 0%,#F3EFEA 100%);border:1px solid rgba(44,53,39,0.08);padding:1.75rem;border-radius:2px;margin-top:1.5rem}.disclaimer-page-section__action-title{color:#1F241E;font-weight:600}.disclaimer-page-section__action-desc{font-size:0.875rem;color:#5E645A}.disclaimer-page-section__action-btn{display:inline-block;background:#C46D52;color:#FFFFFF;border:1px solid #C46D52;border-radius:2px;padding:0.75rem 1.75rem;font-size:0.75rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;text-decoration:none;transition:all 0.3s ease}.disclaimer-page-section__action-btn:hover{background:#B35E44;border-color:#B35E44;color:#FFFFFF;transform:translateY(-2px)}@media (max-width:991.98px){.disclaimer-page-section__nav-card{position:static;margin-bottom:2rem}.disclaimer-page-section__content-body{padding:2rem 1.5rem}}@media (max-width:767.98px){.disclaimer-page-section__main-title{font-size:1.85rem}.disclaimer-page-section__section-title{font-size:1.35rem}.disclaimer-page-section__content-body{padding:1.5rem 1rem}}

.luxury-comment-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 1.5rem;
}

.luxury-comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 53, 39, 0.06);
}

.luxury-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    user-select: none;
}

.luxury-avatar-primary {
    background: linear-gradient(135deg, #2C3527 0%, #4A5543 100%);
    color: #FDFBF7;
    border: 1px solid rgba(44, 53, 39, 0.15);
}

.luxury-comment-author {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F241E;
    letter-spacing: -0.01em;
}

.luxury-badge-verified {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5E694D;
    background-color: #FAF8F5;
    border: 1px solid rgba(94, 105, 77, 0.25);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
}

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

.luxury-rating {
    display: flex;
    gap: 0.25rem;
}

.luxury-star {
    color: #C46D52;
    font-size: 0.8125rem;
}

.luxury-comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5E645A;
    font-weight: 400;
}

.luxury-action-btn {
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #8C7A6B;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 300ms ease;
}

.luxury-action-btn:hover {
    color: #C46D52;
}

.luxury-count {
    font-size: 0.8125rem;
    font-weight: 600;
}

.luxury-reply-card {
    background-color: #FAF8F5;
    border-left: 2px solid #C46D52;
    border-top: 1px solid rgba(44, 53, 39, 0.06);
    border-right: 1px solid rgba(44, 53, 39, 0.06);
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
    border-radius: 0 2px 2px 0;
    padding: 1.5rem;
    margin-left: 2rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(44, 53, 39, 0.02);
}

@media (max-width: 576px) {
    .luxury-reply-card {
        margin-left: 1rem;
        padding: 1.25rem 1rem;
    }
}

.luxury-avatar-accent {
    background: linear-gradient(135deg, #C46D52 0%, #8C7A6B 100%);
    color: #FFFFFF;
    border: 1px solid rgba(196, 109, 82, 0.3);
}

.luxury-badge-official {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C46D52;
    background-color: #FFFFFF;
    border: 1px solid rgba(196, 109, 82, 0.3);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
}


/* ===== PAGE TEMPLATE: services ===== */
.luxury-header {
    background-color: #FAF8F5;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.luxury-header .luxury-header__top-bar {
    background-color: #F3EFEA;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
    padding: 0.45rem 0;
    font-size: 0.785rem;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item {
    display: inline-flex;
    align-items: center;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item i {
    color: #8C7A6B;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link {
    color: #2C3527;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.luxury-header .luxury-header__contact-link i {
    color: #C46D52;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link:hover {
    color: #C46D52;
}

.luxury-header .luxury-header__whatsapp-link {
    color: #2C3527;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.luxury-header .luxury-header__whatsapp-link i {
    color: #5E694D;
}

.luxury-header .luxury-header__whatsapp-link:hover {
    color: #5E694D;
}

.luxury-header .luxury-header__navbar {
    background-color: #FAF8F5;
    padding: 0.75rem 0;
}

.luxury-header .luxury-header__brand {
    text-decoration: none;
}

.luxury-header .luxury-header__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.luxury-header .luxury-header__brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C3527;
    letter-spacing: -0.01em;
}

.luxury-header .luxury-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-header .luxury-header__nav-link {
    color: #2C3527;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.luxury-header .luxury-header__nav-link:hover,
.luxury-header .luxury-header__nav-link:focus,
.luxury-header .luxury-header__nav-link.active {
    color: #C46D52;
}

.luxury-header .luxury-header__toggler {
    border: 1px solid rgba(44, 53, 39, 0.2);
    padding: 0.4rem 0.65rem;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}

.luxury-header .luxury-header__toggler-icon {
    color: #2C3527;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-header .luxury-header__dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.06);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.luxury-header .luxury-header__dropdown-item {
    font-size: 0.85rem;
    color: #2C3527;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.luxury-header .luxury-header__dropdown-item:hover,
.luxury-header .luxury-header__dropdown-item:focus {
    background-color: #F7F4EF;
    color: #C46D52;
}

.luxury-header .luxury-header__dropdown-divider {
    border-color: rgba(44, 53, 39, 0.08);
    margin: 0.35rem 0;
}

.luxury-header .luxury-header__cta-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.6rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-header .luxury-header__cta-btn:hover,
.luxury-header .luxury-header__cta-btn:focus {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .luxury-header .luxury-header__navbar {
        padding: 0.6rem 0;
    }

    .luxury-header .luxury-header__brand-text {
        font-size: 1.35rem;
    }

    .luxury-header .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1rem 0;
        border-top: 1px solid rgba(44, 53, 39, 0.06);
        margin-top: 0.5rem;
    }

    .luxury-header .luxury-header__nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .luxury-header .luxury-header__dropdown-menu {
        background-color: #F7F4EF;
        border: none;
        box-shadow: none;
        padding-left: 0.75rem;
        margin-top: 0;
    }

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

.service-detail-main {
    background-color: #FAF8F5;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.service-detail-main .text-terracotta {
    color: #C46D52 !important;
}

.service-detail-main .text-olive {
    color: #5E694D !important;
}

.service-detail-hero {
    position: relative;
    background: linear-gradient(135deg, #FAF8F5 0%, #F3EFEA 100%);
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    overflow: hidden;
}

.service-detail-hero__bg-shape {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(216, 195, 165, 0.18) 0%, rgba(250, 248, 245, 0) 70%);
    pointer-events: none;
}

.service-detail-hero__breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.service-detail-hero__breadcrumb-link {
    color: #8C7A6B;
    text-decoration: none;
}

.service-detail-hero__breadcrumb-link:hover {
    color: #C46D52;
}

.service-detail-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C46D52;
}

.service-detail-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1F241E;
}

.service-detail-hero__lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5E645A;
    max-width: 680px;
}

.service-detail-hero__btn-primary {
    background-color: #C46D52;
    color: #FFFFFF;
    border: 1px solid #C46D52;
    padding: 0.85rem 1.8rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-detail-hero__btn-primary:hover {
    background-color: #B35E44;
    border-color: #B35E44;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.service-detail-hero__btn-outline {
    background-color: transparent;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.35);
    padding: 0.85rem 1.8rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-detail-hero__btn-outline:hover {
    background-color: #F7F4EF;
    border-color: #2C3527;
    color: #1B2218;
}

.service-detail-hero__meta-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.1);
    border-radius: 2px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.service-detail-hero__meta-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8C7A6B;
    display: block;
}

.service-detail-hero__meta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-hero__meta-header {
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.service-detail-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.service-detail-hero__meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F7F4EF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C46D52;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-detail-hero__meta-label {
    font-size: 0.75rem;
    color: #8A9086;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-detail-hero__meta-val {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1F241E;
    display: block;
}

.service-detail-article {
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-article__media {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 2px;
}

.service-detail-article__img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
}

.service-detail-article__section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-article__sub-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-article__lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5E645A;
}

.service-detail-article p {
    line-height: 1.75;
    color: #5E645A;
}

.service-detail-benefit-card {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-detail-benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 109, 82, 0.3);
}

.service-detail-benefit-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-benefit-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5E645A;
}

.service-detail-stages__timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-detail-stages__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.06);
    border-radius: 2px;
}

.service-detail-stages__num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C46D52;
    line-height: 1;
    min-width: 32px;
}

.service-detail-stages__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2C3527;
    margin-bottom: 0.35rem;
}

.service-detail-stages__desc {
    font-size: 0.9rem;
    color: #5E645A;
    line-height: 1.6;
}

.service-detail-equipment__tab-btn {
    background-color: #FAF8F5;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.15);
    border-radius: 2px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.15rem;
    transition: all 0.3s ease;
}

.service-detail-equipment__tab-btn:hover,
.service-detail-equipment__tab-btn.active {
    background-color: #2C3527;
    color: #FFFFFF;
    border-color: #2C3527;
}

.service-detail-equipment__tab-pane {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    padding: 1.5rem;
    border-radius: 2px;
}

.service-detail-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-detail-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #5E645A;
}

.service-detail-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #C46D52;
    font-size: 0.6rem;
    top: 0.35rem;
}

.service-detail-inquiry {
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-inquiry__badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C46D52;
    font-weight: 700;
}

.service-detail-inquiry__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-inquiry__subtitle {
    font-size: 0.95rem;
    color: #5E645A;
}

.service-detail-inquiry__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C3527;
    margin-bottom: 0.4rem;
}

.service-detail-inquiry__input {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.2);
    border-radius: 2px;
    color: #1F241E;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
}

.service-detail-inquiry__input::placeholder {
    color: #8A9086;
    opacity: 1;
}

.service-detail-inquiry__input:focus {
    background-color: #FFFFFF;
    border-color: #C46D52;
    box-shadow: 0 0 0 0.2rem rgba(196, 109, 82, 0.15);
    color: #1F241E;
}

.service-detail-inquiry__submit-btn {
    background-color: #2C3527;
    color: #FFFFFF;
    border: 1px solid #2C3527;
    padding: 0.9rem 2.2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-detail-inquiry__submit-btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.service-detail-inquiry__privacy-note {
    font-size: 0.8rem;
    color: #8A9086;
}

.service-detail-reviews {
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-reviews__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-reviews__count {
    font-size: 0.875rem;
    color: #8A9086;
}

.service-detail-reviews__write-btn {
    background-color: transparent;
    color: #C46D52;
    border: 1px solid #C46D52;
    padding: 0.5rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-detail-reviews__write-btn:hover {
    background-color: #C46D52;
    color: #FFFFFF;
}

.luxury-comment-card,
.luxury-reply-card {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.luxury-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.luxury-avatar-primary {
    background-color: #2C3527;
    color: #FDFBF7;
}

.luxury-avatar-accent {
    background-color: #C46D52;
    color: #FFFFFF;
}

.luxury-comment-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2C3527;
}

.luxury-badge-verified {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    background-color: rgba(94, 105, 77, 0.15);
    color: #5E694D;
    font-weight: 600;
}

.luxury-badge-official {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    background-color: rgba(196, 109, 82, 0.15);
    color: #C46D52;
    font-weight: 600;
}

.luxury-comment-date {
    font-size: 0.8rem;
    color: #8A9086;
}

.luxury-star {
    color: #D8C3A5;
    font-size: 0.85rem;
    margin-right: 0.15rem;
}

.luxury-comment-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #5E645A;
}

.luxury-action-btn {
    background: none;
    border: none;
    color: #8C7A6B;
    font-size: 0.82rem;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.luxury-action-btn:hover,
.luxury-action-btn.active {
    color: #C46D52;
}

.service-detail-comment-form-wrap {
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-comment-form__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-star-btn {
    background: none;
    border: none;
    color: #D5D8D0;
    font-size: 1.15rem;
    padding: 0 0.15rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.service-detail-star-btn.active {
    color: #C46D52;
}

.service-detail-comment-form__submit-btn {
    background-color: #C46D52;
    color: #FFFFFF;
    border: 1px solid #C46D52;
    padding: 0.75rem 1.8rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.service-detail-comment-form__submit-btn:hover {
    background-color: #B35E44;
    border-color: #B35E44;
    color: #FFFFFF;
}

.service-detail-sidebar__card {
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-sidebar__card--highlight {
    background: linear-gradient(135deg, #F7F4EF 0%, #FFFFFF 100%);
    border-left: 3px solid #C46D52;
}

.service-detail-sidebar__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3527;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    padding-bottom: 0.6rem;
}

.service-detail-sidebar__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-detail-sidebar__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.06);
    border-radius: 2px;
    color: #2C3527;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-detail-sidebar__nav-link:hover,
.service-detail-sidebar__nav-link.active {
    background-color: #2C3527;
    color: #FFFFFF;
    border-color: #2C3527;
    padding-left: 1.25rem;
}

.service-detail-sidebar__text {
    font-size: 0.9rem;
    color: #5E645A;
    line-height: 1.6;
}

.service-detail-sidebar__contact-box {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.06);
    padding: 1rem;
    border-radius: 2px;
}

.service-detail-sidebar__contact-link {
    color: #2C3527;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.service-detail-sidebar__contact-link:hover {
    color: #C46D52;
}

.service-detail-sidebar__cta-btn {
    background-color: #2C3527;
    color: #FFFFFF;
    border: 1px solid #2C3527;
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-detail-sidebar__cta-btn:hover {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
}

.service-detail-sidebar__badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C46D52;
    font-weight: 700;
    display: block;
}

.service-detail-sidebar__highlight-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2C3527;
}

.service-detail-sidebar__highlight-desc {
    font-size: 0.88rem;
    color: #5E645A;
    line-height: 1.6;
}

.site-footer {
    background-color: #FAF8F5;
    border-top: 1px solid rgba(44, 53, 39, 0.1);
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.site-footer__inner {
    padding: 4.5rem 0 2.5rem;
}

.site-footer__top {
    margin-bottom: 3rem;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer__logo-link {
    align-items: center;
    display: inline-flex;
    gap: 0.875rem;
    text-decoration: none;
}

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

.site-footer__brand-name {
    color: #2C3527;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.site-footer__description {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
    max-width: 340px;
}

.site-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__heading {
    border-bottom: 1px solid rgba(196, 109, 82, 0.3);
    color: #2C3527;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__link {
    color: #5E645A;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #C46D52;
    text-decoration: none;
    transform: translateX(3px);
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.site-footer__contact-icon {
    color: #C46D52;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    min-width: 18px;
    text-align: center;
}

.site-footer__contact-text {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__contact-link {
    color: #5E645A;
    word-break: break-word;
}

.site-footer__wa-link {
    color: #2C3527;
    font-weight: 600;
}

.site-footer__wa-link:hover {
    color: #C46D52;
}

.site-footer__divider {
    background-color: rgba(44, 53, 39, 0.08);
    height: 1px;
    margin-bottom: 2rem;
    width: 100%;
}

.site-footer__bottom {
    padding-top: 0.5rem;
}

.site-footer__copyright {
    color: #8A9086;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__legal-links {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.site-footer__legal-link {
    color: #8A9086;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus {
    color: #2C3527;
    text-decoration: underline;
}

.site-footer__legal-separator {
    color: rgba(44, 53, 39, 0.2);
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .service-detail-hero__title {
        font-size: 1.125rem;
        line-height: 1.3;
        hyphens: auto;
    }

    .service-detail-hero__lead {
        font-size: 0.875rem;
    }

    .service-detail-article__section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .service-detail-article__sub-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .service-detail-inquiry__title {
        font-size: 1rem;
    }

    .service-detail-reviews__title {
        font-size: 0.875rem;
    }

    .site-footer__inner {
        padding: 3.5rem 0 2rem;
    }

    .site-footer__top {
        margin-bottom: 2rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
    }

    .site-footer__brand-name {
        font-size: 1.5rem;
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* ===== PAGE TEMPLATE: electrical-installation ===== */
.luxury-header {
    background-color: #FAF8F5;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.luxury-header .luxury-header__top-bar {
    background-color: #F3EFEA;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
    padding: 0.45rem 0;
    font-size: 0.785rem;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item {
    display: inline-flex;
    align-items: center;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item i {
    color: #8C7A6B;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link {
    color: #2C3527;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.luxury-header .luxury-header__contact-link i {
    color: #C46D52;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link:hover {
    color: #C46D52;
}

.luxury-header .luxury-header__whatsapp-link {
    color: #2C3527;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.luxury-header .luxury-header__whatsapp-link i {
    color: #5E694D;
}

.luxury-header .luxury-header__whatsapp-link:hover {
    color: #5E694D;
}

.luxury-header .luxury-header__navbar {
    background-color: #FAF8F5;
    padding: 0.75rem 0;
}

.luxury-header .luxury-header__brand {
    text-decoration: none;
}

.luxury-header .luxury-header__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.luxury-header .luxury-header__brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C3527;
    letter-spacing: -0.01em;
}

.luxury-header .luxury-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-header .luxury-header__nav-link {
    color: #2C3527;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.luxury-header .luxury-header__nav-link:hover,
.luxury-header .luxury-header__nav-link:focus,
.luxury-header .luxury-header__nav-link.active {
    color: #C46D52;
}

.luxury-header .luxury-header__toggler {
    border: 1px solid rgba(44, 53, 39, 0.2);
    padding: 0.4rem 0.65rem;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}

.luxury-header .luxury-header__toggler-icon {
    color: #2C3527;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-header .luxury-header__dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.06);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.luxury-header .luxury-header__dropdown-item {
    font-size: 0.85rem;
    color: #2C3527;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.luxury-header .luxury-header__dropdown-item:hover,
.luxury-header .luxury-header__dropdown-item:focus {
    background-color: #F7F4EF;
    color: #C46D52;
}

.luxury-header .luxury-header__dropdown-divider {
    border-color: rgba(44, 53, 39, 0.08);
    margin: 0.35rem 0;
}

.luxury-header .luxury-header__cta-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.6rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-header .luxury-header__cta-btn:hover,
.luxury-header .luxury-header__cta-btn:focus {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .luxury-header .luxury-header__navbar {
        padding: 0.6rem 0;
    }

    .luxury-header .luxury-header__brand-text {
        font-size: 1.35rem;
    }

    .luxury-header .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1rem 0;
        border-top: 1px solid rgba(44, 53, 39, 0.06);
        margin-top: 0.5rem;
    }

    .luxury-header .luxury-header__nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .luxury-header .luxury-header__dropdown-menu {
        background-color: #F7F4EF;
        border: none;
        box-shadow: none;
        padding-left: 0.75rem;
        margin-top: 0;
    }

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


.service-detail-view {
    background-color: #FAF8F5;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.service-detail-view__breadcrumb-bar {
    background-color: #F3EFEA;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
}

.service-detail-view__breadcrumb-bar .breadcrumb {
    font-size: 0.85rem;
}

.service-detail-view__breadcrumb-bar a {
    color: #5E645A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-detail-view__breadcrumb-bar a:hover {
    color: #C46D52;
}

.service-detail-view__breadcrumb-bar .active {
    color: #2C3527;
    font-weight: 600;
}

.service-detail-view__hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #F3EFEA 0%, #FAF8F5 100%);
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
}

.service-detail-view__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #C46D52;
}

.service-detail-view__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.25rem;
    line-height: 1.15;
    color: #1F241E;
    font-weight: 600;
}

.service-detail-view__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5E645A;
}

.service-detail-view__badge {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.12);
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2C3527;
    border-radius: 2px;
}

.service-detail-view__badge i {
    color: #5E694D;
}

.service-detail-view__btn-primary {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    padding: 0.85rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-detail-view__btn-primary:hover,
.service-detail-view__btn-primary:focus {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.service-detail-view__btn-outline {
    background-color: transparent;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.35);
    padding: 0.85rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-detail-view__btn-outline:hover {
    background-color: #F3EFEA;
    color: #1F241E;
}

.service-detail-view__btn-wa {
    background-color: #5E694D;
    color: #FFFFFF;
    border: 1px solid #5E694D;
    padding: 0.85rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-detail-view__btn-wa:hover {
    background-color: #444E36;
    color: #FFFFFF;
}

.service-detail-view__image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(44, 53, 39, 0.1);
    background-color: #2C3527;
}

.service-detail-view__single-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-view__image-frame:hover .service-detail-view__single-image {
    transform: scale(1.03);
}

.service-detail-view__image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 36, 30, 0.9) 100%);
    color: #FFFFFF;
}

.service-detail-view__caption-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: rgba(196, 109, 82, 0.9);
    color: #FFFFFF;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 0.35rem;
}

.service-detail-view__article {
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.service-detail-view__section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    color: #1F241E;
    line-height: 1.25;
}

.service-detail-view__h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    color: #2C3527;
}

.service-detail-view__text-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2C3527;
    font-weight: 500;
}

.service-detail-view__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #5E645A;
}

.service-detail-view__standards-box {
    background-color: #FAF8F5;
    border-left: 4px solid #5E694D;
    border-radius: 0 2px 2px 0;
}

.service-detail-view__standards-title {
    font-size: 1.25rem;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.service-detail-view__standards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-detail-view__standards-list li {
    font-size: 0.95rem;
    color: #5E645A;
}

.service-detail-view__standards-list li i {
    color: #5E694D;
}

.service-detail-view__step-card {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    position: relative;
}

.service-detail-view__step-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C46D52;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-detail-view__step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1F241E;
    margin-bottom: 0.35rem;
}

.service-detail-view__step-text {
    font-size: 0.875rem;
    color: #5E645A;
    line-height: 1.5;
}

.service-detail-view__sidebar-card {
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 53, 39, 0.03);
}

.service-detail-view__sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1F241E;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    padding-bottom: 0.75rem;
}

.service-detail-view__sidebar-text {
    color: #5E645A;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-detail-view__form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2C3527;
    margin-bottom: 0.35rem;
}

.service-detail-view__input,
.service-detail-view__select,
.service-detail-view__textarea {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.15);
    border-radius: 2px;
    font-size: 0.9rem;
    color: #1F241E;
    padding: 0.65rem 0.85rem;
}

.service-detail-view__input::placeholder,
.service-detail-view__textarea::placeholder {
    color: #8A9086;
}

.service-detail-view__input:focus,
.service-detail-view__select:focus,
.service-detail-view__textarea:focus {
    background-color: #FFFFFF;
    border-color: #C46D52;
    box-shadow: 0 0 0 3px rgba(196, 109, 82, 0.15);
    color: #1F241E;
}

.service-detail-view__service-switch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-detail-view__switch-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.06);
    color: #2C3527;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.service-detail-view__switch-link i {
    color: #C46D52;
    transition: transform 0.25s ease;
}

.service-detail-view__switch-link:hover {
    background-color: #2C3527;
    color: #FFFFFF;
    border-color: #2C3527;
}

.service-detail-view__switch-link:hover i {
    transform: translateX(4px);
    color: #FFFFFF;
}


.luxury-comment-card,
.luxury-reply-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(44, 53, 39, 0.02);
}

.luxury-reply-card {
    margin-left: 2rem;
    background-color: #FAF8F5;
    border-left: 3px solid #C46D52;
}

.luxury-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.luxury-avatar-primary {
    background-color: #2C3527;
    color: #FDFBF7;
}

.luxury-avatar-accent {
    background-color: #C46D52;
    color: #FFFFFF;
}

.luxury-comment-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1F241E;
}

.luxury-badge-verified {
    font-size: 0.725rem;
    background-color: rgba(94, 105, 77, 0.12);
    color: #5E694D;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.luxury-badge-official {
    font-size: 0.725rem;
    background-color: rgba(196, 109, 82, 0.12);
    color: #C46D52;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.luxury-comment-date {
    font-size: 0.8rem;
    color: #8A9086;
}

.luxury-star {
    color: #D8C3A5;
    font-size: 0.8rem;
    margin-right: 2px;
}

.luxury-comment-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5E645A;
}

.luxury-action-btn {
    background: none;
    border: none;
    color: #8A9086;
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.luxury-action-btn:hover,
.luxury-action-btn.active {
    color: #C46D52;
}

.service-detail-view__comments-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    color: #1F241E;
}

.service-detail-view__comment-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5E645A;
}


.site-footer {
    background-color: #FAF8F5;
    border-top: 1px solid rgba(44, 53, 39, 0.1);
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.site-footer__inner {
    padding: 4.5rem 0 2.5rem;
}

.site-footer__top {
    margin-bottom: 3rem;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer__logo-link {
    align-items: center;
    display: inline-flex;
    gap: 0.875rem;
    text-decoration: none;
}

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

.site-footer__brand-name {
    color: #2C3527;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.site-footer__description {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
    max-width: 340px;
}

.site-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__heading {
    border-bottom: 1px solid rgba(196, 109, 82, 0.3);
    color: #2C3527;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__link {
    color: #5E645A;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #C46D52;
    text-decoration: none;
    transform: translateX(3px);
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.site-footer__contact-icon {
    color: #C46D52;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    min-width: 18px;
    text-align: center;
}

.site-footer__contact-text {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__contact-link {
    color: #5E645A;
    word-break: break-word;
}

.site-footer__wa-link {
    color: #2C3527;
    font-weight: 600;
}

.site-footer__wa-link:hover {
    color: #C46D52;
}

.site-footer__divider {
    background-color: rgba(44, 53, 39, 0.08);
    height: 1px;
    margin-bottom: 2rem;
    width: 100%;
}

.site-footer__bottom {
    padding-top: 0.5rem;
}

.site-footer__copyright {
    color: #8A9086;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__legal-links {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.site-footer__legal-link {
    color: #8A9086;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus {
    color: #2C3527;
    text-decoration: underline;
}

.site-footer__legal-separator {
    color: rgba(44, 53, 39, 0.2);
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .service-detail-view__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .service-detail-view__section-heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .service-detail-view__h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .service-detail-view__single-image {
        height: 260px;
    }

    .luxury-reply-card {
        margin-left: 0.75rem;
    }

    .site-footer__inner {
        padding: 3.5rem 0 2rem;
    }

    .site-footer__top {
        margin-bottom: 2rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
    }

    .site-footer__brand-name {
        font-size: 1.5rem;
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* ===== PAGE TEMPLATE: ready-solutions ===== */
.luxury-header {
    background-color: #FAF8F5;
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.luxury-header .luxury-header__top-bar {
    background-color: #F3EFEA;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
    padding: 0.45rem 0;
    font-size: 0.785rem;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item {
    display: inline-flex;
    align-items: center;
    color: #5E645A;
}

.luxury-header .luxury-header__contact-item i {
    color: #8C7A6B;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link {
    color: #2C3527;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.luxury-header .luxury-header__contact-link i {
    color: #C46D52;
    font-size: 0.8rem;
}

.luxury-header .luxury-header__contact-link:hover {
    color: #C46D52;
}

.luxury-header .luxury-header__whatsapp-link {
    color: #2C3527;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.luxury-header .luxury-header__whatsapp-link i {
    color: #5E694D;
}

.luxury-header .luxury-header__whatsapp-link:hover {
    color: #5E694D;
}

.luxury-header .luxury-header__navbar {
    background-color: #FAF8F5;
    padding: 0.75rem 0;
}

.luxury-header .luxury-header__brand {
    text-decoration: none;
}

.luxury-header .luxury-header__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.luxury-header .luxury-header__brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C3527;
    letter-spacing: -0.01em;
}

.luxury-header .luxury-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-header .luxury-header__nav-link {
    color: #2C3527;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.luxury-header .luxury-header__nav-link:hover,
.luxury-header .luxury-header__nav-link:focus,
.luxury-header .luxury-header__nav-link.active {
    color: #C46D52;
}

.luxury-header .luxury-header__toggler {
    border: 1px solid rgba(44, 53, 39, 0.2);
    padding: 0.4rem 0.65rem;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}

.luxury-header .luxury-header__toggler-icon {
    color: #2C3527;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-header .luxury-header__dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.06);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.luxury-header .luxury-header__dropdown-item {
    font-size: 0.85rem;
    color: #2C3527;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.luxury-header .luxury-header__dropdown-item:hover,
.luxury-header .luxury-header__dropdown-item:focus {
    background-color: #F7F4EF;
    color: #C46D52;
}

.luxury-header .luxury-header__dropdown-divider {
    border-color: rgba(44, 53, 39, 0.08);
    margin: 0.35rem 0;
}

.luxury-header .luxury-header__cta-btn {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.6rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.luxury-header .luxury-header__cta-btn:hover,
.luxury-header .luxury-header__cta-btn:focus {
    background-color: #4A5543;
    border-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .luxury-header .luxury-header__navbar {
        padding: 0.6rem 0;
    }

    .luxury-header .luxury-header__brand-text {
        font-size: 1.35rem;
    }

    .luxury-header .navbar-collapse {
        background-color: #FAF8F5;
        padding: 1rem 0;
        border-top: 1px solid rgba(44, 53, 39, 0.06);
        margin-top: 0.5rem;
    }

    .luxury-header .luxury-header__nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .luxury-header .luxury-header__dropdown-menu {
        background-color: #F7F4EF;
        border: none;
        box-shadow: none;
        padding-left: 0.75rem;
        margin-top: 0;
    }

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

.solution-page {
    background-color: #FAF8F5;
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.solution-page .solution-hero {
    background: linear-gradient(135deg, #FAF8F5 0%, #F3EFEA 100%);
    border-bottom: 1px solid rgba(44, 53, 39, 0.08);
    padding: 3rem 0 3.5rem;
}

.solution-page .solution-hero__breadcrumb-link {
    color: #5E645A;
    text-decoration: none;
    font-size: 0.85rem;
}

.solution-page .solution-hero__breadcrumb-link:hover {
    color: #C46D52;
}

.solution-page .solution-hero__tag {
    display: inline-flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.12);
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C46D52;
    border-radius: 50px;
}

.solution-page .solution-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1F241E;
}

.solution-page .solution-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5E645A;
    max-width: 720px;
}

.solution-page .solution-hero__btn-primary {
    background-color: #2C3527;
    color: #FDFBF7;
    border: 1px solid #2C3527;
    border-radius: 2px;
    padding: 0.85rem 1.8rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.solution-page .solution-hero__btn-primary:hover {
    background-color: #4A5543;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.solution-page .solution-hero__btn-outline {
    background-color: transparent;
    color: #2C3527;
    border: 1px solid rgba(44, 53, 39, 0.35);
    border-radius: 2px;
    padding: 0.85rem 1.8rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.solution-page .solution-hero__btn-outline:hover {
    background-color: #FFFFFF;
    color: #1B2218;
}

.solution-page .solution-hero__meta-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.solution-page .solution-hero__meta-item {
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
}

.solution-page .solution-hero__meta-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.solution-page .solution-hero__meta-label {
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8A9086;
    display: block;
    margin-bottom: 0.25rem;
}

.solution-page .solution-hero__meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C3527;
    display: block;
}

.solution-page .solution-article__media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(44, 53, 39, 0.08);
}

.solution-page .solution-article__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.solution-page .solution-article__section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-article__subheading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2C3527;
}

.solution-page .solution-article__paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #5E645A;
}

.solution-page .solution-article__callout {
    background-color: #F7F4EF;
    border-left: 3px solid #C46D52;
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
}

.solution-page .solution-article__callout-icon {
    color: #C46D52;
    font-size: 1.5rem;
}

.solution-page .solution-article__callout-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-article__callout-text {
    font-size: 0.9rem;
    color: #5E645A;
    line-height: 1.6;
}

.solution-page .solution-article__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.solution-page .solution-article__list li {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #5E645A;
}

.solution-page .solution-article__list li i {
    color: #5E694D;
    margin-top: 0.25rem;
}

.solution-page .solution-specs {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.solution-page .solution-specs__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-specs__tab-btn {
    background-color: #F7F4EF;
    color: #5E645A;
    border: 1px solid rgba(44, 53, 39, 0.1);
    font-size: 0.785rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.solution-page .solution-specs__tab-btn.active,
.solution-page .solution-specs__tab-btn:hover {
    background-color: #2C3527;
    color: #FFFFFF;
    border-color: #2C3527;
}

.solution-page .solution-specs__table th {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3527;
    padding: 1rem 0.75rem;
    border-bottom-color: rgba(44, 53, 39, 0.08);
}

.solution-page .solution-specs__table td {
    font-size: 0.9rem;
    color: #5E645A;
    padding: 1rem 0.75rem;
    border-bottom-color: rgba(44, 53, 39, 0.08);
}

.solution-page .solution-faq__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-accordion__item {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.solution-page .solution-accordion__button {
    background-color: #FFFFFF;
    color: #1F241E;
    font-size: 0.985rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
}

.solution-page .solution-accordion__button:not(.collapsed) {
    color: #C46D52;
    background-color: #FAF8F5;
}

.solution-page .solution-accordion__button::after {
    filter: sepia(100%) hue-rotate(330deg) saturate(500%);
}

.solution-page .solution-accordion__body {
    font-size: 0.925rem;
    line-height: 1.7;
    color: #5E645A;
    padding: 1.25rem 1.5rem;
    background-color: #FAF8F5;
    border-top: 1px solid rgba(44, 53, 39, 0.06);
}

.solution-page .solution-comments-section {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.solution-page .solution-comments-section__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-comments-section__badge {
    font-size: 0.785rem;
    color: #C46D52;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.solution-page .luxury-comment-card {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-page .luxury-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-page .luxury-avatar-primary {
    background-color: #2C3527;
    color: #FFFFFF;
}

.solution-page .luxury-avatar-accent {
    background-color: #C46D52;
    color: #FFFFFF;
}

.solution-page .luxury-avatar-text {
    font-size: 0.85rem;
    font-weight: 700;
}

.solution-page .luxury-comment-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1F241E;
}

.solution-page .luxury-badge-verified {
    font-size: 0.725rem;
    color: #5E694D;
    background-color: rgba(94, 105, 77, 0.12);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-weight: 600;
}

.solution-page .luxury-badge-official {
    font-size: 0.725rem;
    color: #C46D52;
    background-color: rgba(196, 109, 82, 0.12);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-weight: 600;
}

.solution-page .luxury-comment-date {
    font-size: 0.785rem;
    color: #8A9086;
}

.solution-page .luxury-star {
    color: #D8C3A5;
    font-size: 0.85rem;
    margin-right: 2px;
}

.solution-page .luxury-comment-text {
    font-size: 0.925rem;
    line-height: 1.7;
    color: #5E645A;
}

.solution-page .luxury-action-btn {
    background: none;
    border: none;
    color: #5E645A;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.solution-page .luxury-action-btn:hover,
.solution-page .luxury-action-btn.active {
    color: #C46D52;
}

.solution-page .solution-comment-form-card {
    background-color: #FAF8F5;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 1.5rem;
}

.solution-page .solution-comment-form-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-form__label {
    font-size: 0.785rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2C3527;
    margin-bottom: 0.4rem;
}

.solution-page .solution-form__input,
.solution-page .solution-form__select,
.solution-page .solution-form__textarea {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.15);
    border-radius: 3px;
    color: #1F241E;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
}

.solution-page .solution-form__input::placeholder,
.solution-page .solution-form__textarea::placeholder {
    color: #8A9086;
}

.solution-page .solution-form__input:focus,
.solution-page .solution-form__select:focus,
.solution-page .solution-form__textarea:focus {
    background-color: #FFFFFF;
    border-color: #C46D52;
    color: #1F241E;
    box-shadow: none;
}

.solution-page .solution-form__submit-btn {
    background-color: #C46D52;
    color: #FFFFFF;
    border: 1px solid #C46D52;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 1.6rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.solution-page .solution-form__submit-btn:hover {
    background-color: #B35E44;
    border-color: #B35E44;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.solution-page .solution-sidebar {
    top: 90px;
}

.solution-page .solution-sidebar__box {
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 53, 39, 0.08);
    border-radius: 4px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(44, 53, 39, 0.04);
}

.solution-page .solution-sidebar__badge {
    display: inline-block;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C46D52;
}

.solution-page .solution-sidebar__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-sidebar__sub-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1F241E;
}

.solution-page .solution-sidebar__lead {
    font-size: 0.875rem;
    color: #5E645A;
    line-height: 1.6;
}

.solution-page .solution-sidebar__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-page .solution-sidebar__links-list li {
    border-bottom: 1px solid rgba(44, 53, 39, 0.06);
}

.solution-page .solution-sidebar__links-list li:last-child {
    border-bottom: none;
}

.solution-page .solution-sidebar__link {
    display: block;
    padding: 0.7rem 0;
    color: #2C3527;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.solution-page .solution-sidebar__link i {
    font-size: 0.75rem;
    color: #C46D52;
    transition: transform 0.2s ease;
}

.solution-page .solution-sidebar__link:hover {
    color: #C46D52;
    padding-left: 4px;
}

.solution-page .solution-sidebar__box--support {
    background-color: #F7F4EF;
    border: 1px solid rgba(140, 122, 107, 0.2);
}

.solution-page .solution-sidebar__icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #2C3527;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.solution-page .solution-sidebar__support-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8A9086;
    display: block;
}

.solution-page .solution-sidebar__support-phone {
    font-size: 0.95rem;
    color: #2C3527;
}

.solution-page .solution-sidebar__wa-btn {
    background-color: #5E694D;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.solution-page .solution-sidebar__wa-btn:hover {
    background-color: #444E36;
    color: #FFFFFF;
}

.site-footer {
    background-color: #FAF8F5;
    border-top: 1px solid rgba(44, 53, 39, 0.1);
    color: #1F241E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.site-footer__inner {
    padding: 4.5rem 0 2.5rem;
}

.site-footer__top {
    margin-bottom: 3rem;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer__logo-link {
    align-items: center;
    display: inline-flex;
    gap: 0.875rem;
    text-decoration: none;
}

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

.site-footer__brand-name {
    color: #2C3527;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.site-footer__description {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
    max-width: 340px;
}

.site-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__heading {
    border-bottom: 1px solid rgba(196, 109, 82, 0.3);
    color: #2C3527;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__link {
    color: #5E645A;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #C46D52;
    text-decoration: none;
    transform: translateX(3px);
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.site-footer__contact-icon {
    color: #C46D52;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    min-width: 18px;
    text-align: center;
}

.site-footer__contact-text {
    color: #5E645A;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__contact-link {
    color: #5E645A;
    word-break: break-word;
}

.site-footer__wa-link {
    color: #2C3527;
    font-weight: 600;
}

.site-footer__wa-link:hover {
    color: #C46D52;
}

.site-footer__divider {
    background-color: rgba(44, 53, 39, 0.08);
    height: 1px;
    margin-bottom: 2rem;
    width: 100%;
}

.site-footer__bottom {
    padding-top: 0.5rem;
}

.site-footer__copyright {
    color: #8A9086;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__legal-links {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.site-footer__legal-link {
    color: #8A9086;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus {
    color: #2C3527;
    text-decoration: underline;
}

.site-footer__legal-separator {
    color: rgba(44, 53, 39, 0.2);
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .solution-page .solution-hero {
        padding: 2rem 0 2.5rem;
    }

    .solution-page .solution-hero__title {
        font-size: 1.125rem;
        line-height: 1.3;
        hyphens: auto;
    }

    .solution-page .solution-hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .solution-page .solution-article__section-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .solution-page .solution-article__subheading,
    .solution-page .solution-specs__title,
    .solution-page .solution-faq__title,
    .solution-page .solution-comments-section__title,
    .solution-page .solution-sidebar__title {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .solution-page .solution-article__img {
        height: 240px;
    }

    .solution-page .solution-specs,
    .solution-page .solution-comments-section,
    .solution-page .solution-sidebar__box {
        padding: 1.25rem;
    }

    .site-footer__inner {
        padding: 3.5rem 0 2rem;
    }

    .site-footer__top {
        margin-bottom: 2rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
    }

    .site-footer__brand-name {
        font-size: 1.5rem;
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
}