/* ==========================================
   Земля и Лоза — Page-Specific Styles
   Premium Color Enhancement
   ========================================== */

:root {
    --site-icon-color: #fff8e7;
    --site-icon-bg:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.24), transparent 42%),
        linear-gradient(135deg, #2e5746 0%, #173b2f 100%);
    --site-icon-shadow:
        0 12px 24px rgba(23, 59, 47, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    --site-icon-border: 2px solid rgba(197, 160, 89, 0.72);
}

/* ===== FOR WHOM SECTION ===== */
.for-whom {
    background: transparent;
    padding-top: 100px; /* Убираем «выглядывающую» строчку за пределы первого экрана */
}

.for-whom__grid {
    display: grid;
    gap: var(--space-lg);
}

.for-whom__card {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, rgba(252, 246, 235, 0.96) 0%, rgba(246, 235, 216, 0.88) 52%, rgba(238, 222, 198, 0.8) 100%);
    padding: var(--space-2xl);
    border: 2px solid #b8835c;
    border-radius: var(--radius-lg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 14px 30px rgba(98, 61, 47, 0.06);
    position: relative;
    overflow: hidden;
    cursor: default; /* Static, non-clickable */
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.for-whom__card:hover {
    transform: translateY(-4px);
    border-color: #8f633f;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(145deg, rgba(255, 249, 238, 0.98) 0%, rgba(249, 237, 218, 0.92) 52%, rgba(239, 222, 196, 0.84) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 18px 38px rgba(127, 73, 83, 0.1);
}

.for-whom__image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
    border: 3px solid #b8835c;
    padding: 6px;
    background-clip: content-box !important;
    background-color: transparent;
    position: relative;
    isolation: isolate;
}

.for-whom__image-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 246, 218, 0.42) 0%, transparent 36%),
        linear-gradient(135deg, rgba(184, 131, 92, 0.24) 0%, rgba(127, 73, 83, 0.16) 48%, rgba(143, 99, 63, 0.24) 100%);
    border-radius: var(--radius-md);
}

.for-whom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-md) - 6px);
}

.for-whom__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--accent-gold);
}

.for-whom__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--accent-vine);
}

.for-whom__text {
    font-size: var(--text-sm);
    color: rgba(44, 42, 40, 0.72);
    margin: 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .for-whom__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .for-whom__grid {
        grid-template-columns: repeat(3, 1fr); /* Вернули к оптимальным 3 */
    }
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: transparent;
}

.services-overview__grid {
    display: grid;
    gap: var(--space-lg);
}

.service-card {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, rgba(252, 246, 235, 0.96) 0%, rgba(246, 235, 216, 0.88) 52%, rgba(238, 222, 198, 0.8) 100%);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 2px solid #b8835c;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 14px 30px rgba(98, 61, 47, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #8f633f;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(145deg, rgba(255, 249, 238, 0.98) 0%, rgba(249, 237, 218, 0.92) 52%, rgba(239, 222, 196, 0.84) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 18px 38px rgba(127, 73, 83, 0.1);
}

.service-card__image-wrapper {
    height: 180px;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 3px solid #b8835c; /* Bronze frame */
    padding: 6px;
    background-clip: content-box !important;
    background-color: transparent;
    position: relative;
    isolation: isolate;
}

.service-card__image-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 246, 218, 0.42) 0%, transparent 36%),
        linear-gradient(135deg, rgba(184, 131, 92, 0.24) 0%, rgba(127, 73, 83, 0.16) 48%, rgba(143, 99, 63, 0.24) 100%);
    border-radius: 12px;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px; /* Compensated for padding */
}

.service-card__title {
    font-family: var(--font-accent);
    font-size: 1.25rem; /* Balanced to fit long text */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-vine);
    line-height: 1.2;
    white-space: nowrap; /* FORCED SINGLE LINE */
    overflow: hidden;
    text-overflow: ellipsis; /* Safe overflow */
}

.service-card__text {
    font-size: 0.95rem;
    color: rgba(44, 42, 40, 0.72);
    opacity: 1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-card__link {
    margin-top: auto;
    background: #c5a059;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card__link:hover {
    background: var(--vine-dark);
    transform: translateY(-2px);
}

.services-overview__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .services-overview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-overview__grid {
        grid-template-columns: repeat(4, 1fr); /* 4 колонки — будет 2 ряда по 4 блока */
    }
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    background: transparent;
    padding: var(--space-2xl) 0; /* Уменьшено расстояние между блоками */
}

.problems__grid {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    padding: 20px 10px 40px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.problems__grid::-webkit-scrollbar {
    display: none;
}

.problems__grid::before {
    content: '';
    position: absolute;
    top: 50px; /* Центрируем под 60px кружки (30px + отступы) */
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #c5a059; /* Бронзовая линия */
    z-index: 0;
}

.problems__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    min-width: 180px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.problems__item:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.problems__marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--site-icon-bg);
    color: var(--site-icon-color);
    border: var(--site-icon-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    box-shadow:
        0 0 0 15px var(--bg-main),
        var(--site-icon-shadow);
    margin-top: 0;
    font-family: var(--font-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2; /* Гарантированно выше линии */
}

.problems__item:hover .problems__marker {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 0 0 18px var(--bg-main),
        0 16px 30px rgba(23, 59, 47, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    border-color: rgba(197, 160, 89, 0.92);
}

.problems__item p {
    font-size: 16px;
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}


/* ===== WHY US SECTION ===== */
.why-us {
    --why-card-overlap: clamp(88px, 8vw, 104px);
    background: transparent;
    padding-top: 0;
    margin-top: calc(var(--why-card-overlap) * -1);
    position: relative;
    z-index: 10;
    padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.why-us__grid {
    display: grid;
    gap: clamp(1.25rem, 1.8vw, 1.6rem);
    align-items: stretch;
}

.why-us__card {
    min-height: clamp(236px, 20vw, 268px);
    padding: clamp(1.2rem, 1.75vw, 1.55rem);
    border: 2px solid rgba(151, 100, 68, 0.9);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 78% 92%, rgba(197, 160, 89, 0.26) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(145deg, rgba(255, 252, 244, 0.97) 0%, rgba(249, 239, 221, 0.94) 54%, rgba(238, 219, 188, 0.9) 100%);
    position: relative;
    z-index: 1;
    text-align: center; /* Centers all text inside the block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 -20px 36px rgba(197, 160, 89, 0.08),
        0 16px 34px rgba(86, 54, 39, 0.12);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.why-us__card:hover {
    transform: translateY(-4px);
    border-color: #8f633f;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 78% 92%, rgba(197, 160, 89, 0.32) 0%, rgba(197, 160, 89, 0) 44%),
        linear-gradient(145deg, rgba(255, 253, 247, 0.99) 0%, rgba(250, 241, 224, 0.97) 54%, rgba(241, 222, 190, 0.93) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.82),
        inset 0 -22px 38px rgba(197, 160, 89, 0.1),
        0 20px 42px rgba(127, 73, 83, 0.14);
}

.why-us__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto clamp(0.95rem, 1.35vw, 1.2rem);
    color: var(--site-icon-color);
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.why-us__icon svg {
    width: 34px;
    height: 34px;
}

.why-us__title {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.55rem;
    color: var(--accent-vine);
}

.why-us__text {
    font-size: clamp(0.86rem, 1vw, 0.95rem);
    color: #5f584f;
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}

@media (min-width: 768px) {
    .why-us__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .why-us__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== PROCESS PREVIEW ===== */
.process-preview {
    background: transparent;
}

.process-preview__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-step__number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: var(--site-icon-color);
    margin-bottom: var(--space-lg);
    box-shadow: var(--site-icon-shadow);
    position: relative;
    z-index: 2;
}

.process-step__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--accent-vine);
}

.process-step__text {
    font-size: var(--text-sm);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

.process-preview__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .process-preview__steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #c5a059;
        z-index: -1;
    }
    
    .process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(150% - 46px);
        width: 10px;
        height: 10px;
        border-top: 2px solid #c5a059;
        border-right: 2px solid #c5a059;
        transform: rotate(45deg);
        z-index: 0;
    }
}

/* ===== CASES PREVIEW ===== */
.cases-preview {
    background: transparent;
    padding: var(--space-4xl) 0;
}

.cases-preview__grid {
    display: grid;
    gap: var(--space-lg);
}

.case-card {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 246, 235, 0.94) 0%, rgba(246, 235, 216, 0.86) 54%, rgba(238, 222, 198, 0.78) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #b8835c;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(98, 61, 47, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    outline: 1px solid rgba(143, 99, 63, 0.18);
    outline-offset: -1px;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 16px 34px rgba(127, 73, 83, 0.1);
    border-color: #8f633f;
}

.case-card__image {
    height: 200px;
    background-color: transparent;
    border-radius: calc(var(--radius-md) - 6px);
    margin: var(--space-lg) var(--space-lg) 0;
    border: 3px solid #b8835c;
    padding: 6px;
    background-clip: content-box !important;
    position: relative;
    isolation: isolate;
}

.case-card__image::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(184, 131, 92, 0.18) 0%, rgba(143, 99, 63, 0.24) 100%);
    border-radius: var(--radius-md);
}

.case-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--vine-gradient);
    position: relative;
    overflow: hidden;
}

.case-card__placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(164, 195, 178, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 162, 39, 0.15) 0%, transparent 40%);
}

.case-card__content {
    padding: var(--space-2xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-card__category {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #8c6840;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.case-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: var(--space-sm) 0;
    color: var(--vine-dark);
}

.case-card__text {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.case-card__link {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--button-premium-text);
    background: var(--button-premium-fill);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    border: 1px solid var(--button-premium-border);
    box-shadow: var(--button-premium-shadow);
    backdrop-filter: blur(10px);
}

.case-card__link:hover {
    background: var(--button-premium-fill-hover);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.46),
        0 18px 32px rgba(109, 67, 54, 0.24);
    color: var(--button-premium-text);
}

.cases-preview__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.cases-preview__cta .btn {
    background: var(--button-premium-fill);
    color: var(--button-premium-text);
    border-color: var(--button-premium-border);
    box-shadow: var(--button-premium-shadow);
}

.cases-preview__cta .btn:hover {
    background: var(--button-premium-fill-hover);
    color: var(--button-premium-text);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.46),
        0 18px 32px rgba(109, 67, 54, 0.24);
}

@media (min-width: 768px) {
    .cases-preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== CASE FLIP CARDS (FOR CASES PAGE) ===== */
.case-flip-card {
    aspect-ratio: 1 / 1;
    perspective: 2000px;
    cursor: pointer;
    background: transparent !important;
}

.case-flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.case-flip-card.is-flipped .case-flip-card__inner {
    transform: rotateY(180deg);
}

.case-flip-card__front, 
.case-flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-gold);
    overflow: hidden;
}

.case-flip-card__front {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 2.2rem 1.65rem;
}

.case-flip-card__front img,
.case-flip-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.case-flip-card:hover .case-flip-card__front img {
    transform: scale(1.1);
}

.case-flip-card__front::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1) 0%, transparent 34%),
        linear-gradient(180deg, rgba(9, 27, 22, 0.34) 0%, rgba(9, 27, 22, 0.5) 48%, rgba(9, 27, 22, 0.72) 100%);
    pointer-events: none;
    z-index: 2;
}

.case-flip-card__eyebrow,
.case-flip-card__summary {
    position: relative;
    z-index: 10;
}

.case-flip-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 1rem;
    color: #f7edcf;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(245, 231, 188, 0.42);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.case-flip-card__title-front {
    position: relative;
    z-index: 10;
    isolation: isolate; /* Crucial for proper glass stacking */
    font-family: var(--font-accent);
    font-size: clamp(1.22rem, 1.75vw, 1.65rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.12;
    letter-spacing: 0.035em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1rem;
    margin: 0 auto;
    transition: all 0.6s ease;
    width: min(100%, 300px);
    min-height: 104px;
    color: #fff2cf;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48);
}

.case-flip-card__title-front::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
    border: 1px solid rgba(245, 231, 188, 0.34);
    border-radius: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 14px 32px rgba(0, 0, 0, 0.18);
    transition: all 0.5s ease;
}

.case-flip-card:hover .case-flip-card__title-front::after {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(197, 160, 89, 0.6);
}

.case-flip-card__summary {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 245, 219, 0.92);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

.case-flip-card__back {
    transform: rotateY(180deg);
    background-color: #f8f4eb; /* Premium back color */
    background-image: 
        linear-gradient(45deg, rgba(197, 160, 89, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(197, 160, 89, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(197, 160, 89, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(197, 160, 89, 0.03) 75%);
    background-size: 24px 24px;
    padding: 1.65rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, 0.24);
}

.case-flip-card__back-title {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: #8f633f;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    width: 100%;
}

.case-flip-card__project-name {
    font-size: 1.08rem;
    line-height: 1.2;
    color: var(--vine-dark);
    letter-spacing: 0;
    margin-bottom: 1rem;
    display: block;
    font-weight: 800;
    opacity: 0.9;
    width: 100%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 0.75rem;
}

.case-flip-card__details {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    width: 100%;
    text-align: left;
}

.case-flip-card__details li {
    font-size: 0.82rem;
    margin-bottom: 0.52rem;
    color: var(--text-main);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.4;
}

.case-flip-card__details li strong {
    color: #c5a059;
    font-weight: 700;
    white-space: nowrap;
    min-width: 74px;
}

/* Adjusting the grid for the cases page */
.cases-page .cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .cases-page .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cases-page .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ARTICLES PREVIEW ===== */
.articles-preview {
    background: transparent;
    position: relative;
    padding: var(--space-2xl) 0; /* Уменьшено расстояние между блоками */
}

.articles-layout {
    display: grid;
    gap: var(--space-2xl);
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .articles-layout {
        grid-template-columns: 310px 1fr;
        align-items: start;
    }

    .articles-sidebar {
        padding-top: 16px;
        gap: var(--space-lg);
    }
}

/* Sidebar Styles */
.articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    height: 100%;
}

.articles-sidebar .sidebar-block:last-child {
    flex-grow: 1;
}

.sidebar-block {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 246, 235, 0.94) 0%, rgba(246, 235, 216, 0.86) 54%, rgba(238, 222, 198, 0.78) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid #b8835c;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(98, 61, 47, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    outline: 1px solid rgba(143, 99, 63, 0.18);
    outline-offset: -1px;
}

.sidebar-block__title {
    margin-bottom: 14px;
    text-align: center;
}

.sidebar-block:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 14px 30px rgba(127, 73, 83, 0.08);
    border-color: #8f633f;
}

.sidebar-item {
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--warm-cream);
    transition: all var(--transition-fast);
    opacity: 1;
    transform: none;
}

.topic-btn {
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 243, 214, 0.1) 0%, transparent 22%),
        linear-gradient(145deg, rgba(161, 110, 70, 0.92) 0%, rgba(126, 72, 78, 0.9) 48%, rgba(187, 147, 77, 0.92) 100%);
    border: 1px solid rgba(255, 233, 181, 0.28);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #f6efdd;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 1;
    transform: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.14),
        0 8px 18px rgba(109, 67, 54, 0.1);
    backdrop-filter: blur(4px);
}

.sidebar-item__cat {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--cold-sage);
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vine-dark);
    line-height: 1.4;
}

.sidebar-promo {
    background: var(--vine-dark);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.sidebar-promo__text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.sidebar-promo__link {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.sidebar-block--seasonal {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 246, 235, 0.94) 0%, rgba(246, 235, 216, 0.86) 54%, rgba(238, 222, 198, 0.78) 100%);
    border-color: #b8835c;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sidebar-block--seasonal:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 14px 30px rgba(127, 73, 83, 0.08);
    border-color: #8f633f;
}

.seasonal-list__item {
    font-size: 0.9rem;
    color: var(--vine-dark);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    opacity: 1;
    transform: none;
}

.seasonal-list__item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: 4px;
}

.seasonal-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.seasonal-link:hover {
    color: var(--vine-dark);
    transform: translateX(5px);
}

.sidebar-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    justify-items: stretch;
    align-items: stretch;
}

.sidebar-topics .topic-btn:first-child {
    grid-column: 1 / -1;
    order: 10;
}

.sidebar-topics .topic-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.topic-btn:hover {
    background: var(--button-premium-fill-hover);
    border-color: var(--button-premium-border);
    color: var(--button-premium-text);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.22),
        0 12px 22px rgba(109, 67, 54, 0.14);
}

.topic-btn.active {
    background: var(--button-premium-fill);
    border-color: var(--button-premium-border);
    color: var(--button-premium-text);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.2),
        0 10px 20px rgba(109, 67, 54, 0.12);
}

@media (max-width: 640px) {
    .sidebar-topics {
        grid-template-columns: 1fr;
    }

    .sidebar-topics .topic-btn:first-child {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .about-hero__image,
    .contacts-hero__image,
    .blog-hero__image {
        transform: none !important;
    }

    .blog-main__head h2 {
        max-width: 100% !important;
        white-space: normal !important;
        text-wrap: balance;
    }
}

/* Final home problems repair: keep the task cards polished after the
   later unification layer, without reintroducing horizontal overflow. */
.problems__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(1rem, 2.1vw, 1.65rem) !important;
    overflow: visible !important;
    padding: 0 !important;
}

.problems__grid::before {
    display: none !important;
}

.problems__item {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: clamp(230px, 24vw, 280px) !important;
    padding: clamp(1.25rem, 2vw, 1.85rem) !important;
    border: 1px solid rgba(255, 235, 178, 0.78) !important;
    border-radius: 10px !important;
    background: var(--accent-vine) !important;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16) !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.problems__item::before {
    content: '' !important;
    position: absolute !important;
    inset: 8px !important;
    z-index: 2 !important;
    display: block !important;
    pointer-events: none !important;
    border: 1px solid rgba(255, 241, 207, 0.72) !important;
    border-radius: 7px !important;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12) !important;
    background: transparent !important;
}

.problems__item::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -2 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background-position: center !important;
    background-size: cover !important;
    transform: scale(1.02) !important;
    transition: transform var(--transition-base) !important;
}

.problems__item:nth-child(4n+1)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/preparation.png") !important;
}

.problems__item:nth-child(4n+2)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/care.png") !important;
}

.problems__item:nth-child(4n+3)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/service.png") !important;
}

.problems__item:nth-child(4n)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/trellis.png") !important;
}

.problems__item:hover::after {
    transform: scale(1.06) !important;
}

.problems__marker {
    position: relative !important;
    z-index: 3 !important;
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 1rem !important;
    background: rgba(255, 241, 207, 0.14) !important;
    border: 1px solid rgba(255, 241, 207, 0.82) !important;
    color: #fff1cf !important;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16) !important;
    backdrop-filter: blur(4px) !important;
}

.problems__item p {
    position: relative !important;
    z-index: 3 !important;
    max-width: 15rem !important;
    margin: 0 auto !important;
    color: rgba(255, 246, 222, 0.94) !important;
    font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
    line-height: 1.45 !important;
    text-align: center !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38) !important;
}

@media (max-width: 767px) {
    .problems__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .problems__item {
        min-height: 210px !important;
    }
}

@media (max-width: 520px) {
    .problems__grid {
        gap: 12px !important;
    }

    .problems__item {
        min-height: 168px !important;
        padding: 16px 10px !important;
    }

    .problems__marker {
        width: 46px !important;
        height: 46px !important;
        margin-bottom: 0.75rem !important;
    }

    .problems__item p {
        font-size: 0.86rem !important;
        line-height: 1.35 !important;
    }
}

/* Final override: tasks are a process-style horizontal row of circles. */
.problems__grid {
    position: relative !important;
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: clamp(0.85rem, 1.5vw, 1.15rem) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 20px 4px 28px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}

.problems__grid::-webkit-scrollbar {
    display: none !important;
}

.problems__grid::before {
    content: '' !important;
    position: absolute !important;
    top: 50px !important;
    left: 24px !important;
    right: 24px !important;
    display: block !important;
    height: 1px !important;
    background: rgba(197, 160, 89, 0.62) !important;
    z-index: 0 !important;
}

.problems__item {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex: 1 0 118px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 118px !important;
    max-width: 160px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    overflow: visible !important;
    isolation: auto !important;
}

.problems__item::before,
.problems__item::after {
    content: none !important;
    display: none !important;
}

.problems__marker {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto var(--space-lg) !important;
    border-radius: 50% !important;
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow:
        0 0 0 12px var(--bg-main),
        var(--site-icon-shadow) !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
}

.problems__item:hover,
.problems__item:hover .problems__marker {
    transform: none !important;
}

.problems__item p {
    position: relative !important;
    z-index: 2 !important;
    max-width: 150px !important;
    margin: 0 auto !important;
    color: var(--text-main) !important;
    font-size: clamp(0.78rem, 1.04vw, 0.95rem) !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;
    text-align: center !important;
    text-shadow: none !important;
}

@media (max-width: 767px) {
    .problems__grid {
        justify-content: flex-start !important;
        gap: 18px !important;
        padding-inline: 16px !important;
    }

    .problems__item {
        flex-basis: 132px !important;
        min-width: 132px !important;
    }

    .problems__item p {
        font-size: 0.86rem !important;
    }
}

/* Restore the original task timeline: circles in one horizontal line. */
.problems__grid {
    position: relative !important;
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: clamp(0.85rem, 1.5vw, 1.15rem) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 20px 4px 28px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}

.problems__grid::-webkit-scrollbar {
    display: none !important;
}

.problems__grid::before {
    content: '' !important;
    position: absolute !important;
    top: 50px !important;
    left: 24px !important;
    right: 24px !important;
    display: block !important;
    height: 1px !important;
    background: rgba(197, 160, 89, 0.62) !important;
    z-index: 0 !important;
}

.problems__item {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex: 1 0 118px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 118px !important;
    max-width: 160px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    overflow: visible !important;
    isolation: auto !important;
}

.problems__item::before,
.problems__item::after {
    content: none !important;
    display: none !important;
}

.problems__marker {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto var(--space-lg) !important;
    border-radius: 50% !important;
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow:
        0 0 0 12px var(--bg-main),
        var(--site-icon-shadow) !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
}

.problems__item:hover,
.problems__item:hover .problems__marker {
    transform: none !important;
}

.problems__item p {
    position: relative !important;
    z-index: 2 !important;
    max-width: 150px !important;
    margin: 0 auto !important;
    color: var(--text-main) !important;
    font-size: clamp(0.78rem, 1.04vw, 0.95rem) !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;
    text-align: center !important;
    text-shadow: none !important;
}

@media (max-width: 767px) {
    .problems__grid {
        justify-content: flex-start !important;
        gap: 18px !important;
        padding-inline: 16px !important;
    }

    .problems__item {
        flex-basis: 132px !important;
        min-width: 132px !important;
    }

    .problems__item p {
        font-size: 0.86rem !important;
    }
}

.articles-main {
    min-width: 0;
}

.articles-preview__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-card {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 246, 235, 0.94) 0%, rgba(246, 235, 216, 0.86) 54%, rgba(238, 222, 198, 0.78) 100%);
    border: 2px solid #b8835c;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(98, 61, 47, 0.05);
    position: relative;
    display: flex;
    flex-direction: column; /* Mobile stack */
    outline: 1px solid rgba(143, 99, 63, 0.18);
    outline-offset: -1px;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 16px 34px rgba(127, 73, 83, 0.1);
    border-color: #8f633f;
}

.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.8s;
    pointer-events: none;
}

.article-card:hover::after {
    left: 150%;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.6s;
    z-index: 2;
}

.article-card:hover::before {
    left: 100%;
}

.article-card:hover {
    border-color: #8f633f;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 16px 34px rgba(127, 73, 83, 0.1);
    transform: translateY(-6px);
}

.article-card__image {
    height: 250px; /* Compressed vertical height on mobile */
    background-color: transparent;
    border-radius: calc(var(--radius-md) - 6px);
    margin: var(--space-xl) var(--space-xl) 0;
    border: 3px solid #b8835c;
    padding: 6px;
    background-clip: content-box !important;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.article-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-md) - 12px);
    object-fit: cover;
}

.article-card__image--compact {
    height: 150px;
}

.article-card__button {
    align-self: center;
    margin-top: auto;
}

.article-card__title--compact {
    font-size: 1.1rem;
}

.article-card__button--compact {
    padding: 5px 10px;
    font-size: 0.8rem;
}

.article-card__image::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(184, 131, 92, 0.18) 0%, rgba(143, 99, 63, 0.24) 100%);
    border-radius: var(--radius-md);
}

.article-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vine-dark) 0%, var(--vine-medium) 50%, var(--cold-sage) 100%);
    position: relative;
}

.article-card__placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201, 162, 39, 0.2) 0%, transparent 50%);
}

.article-card__content {
    padding: var(--space-xl);
}

.article-card__category {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #8c6840;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-card__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(251, 246, 236, 0.96) 0%, rgba(244, 235, 219, 0.94) 100%);
    color: #795545;
    font-size: var(--text-xs);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 6px 14px rgba(109, 67, 54, 0.05);
}

.blog-badge--category {
    background: linear-gradient(145deg, rgba(35, 70, 53, 0.98) 0%, rgba(31, 64, 49, 0.98) 100%);
    border-color: rgba(33, 64, 49, 0.92);
    color: #f6f0de;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(33, 64, 49, 0.12);
}

.blog-badge--region {
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 244, 216, 0.12) 0%, transparent 22%),
        linear-gradient(145deg, rgba(244, 233, 216, 0.96) 0%, rgba(240, 227, 212, 0.95) 100%);
    border-color: rgba(196, 158, 92, 0.52);
    color: #8a6741;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 6px 14px rgba(109, 67, 54, 0.06);
}

.article-card__date {
    display: block;
    font-size: var(--text-xs);
    color: #7c6f61;
    font-weight: 500;
    margin-top: var(--space-xs);
}

.article-card__title {
    font-size: var(--text-2xl); /* Larger title for posts */
    font-weight: 600;
    margin: var(--space-md) 0;
    color: var(--accent-vine);
    line-height: 1.3;
}

.article-card__title a {
    color: var(--accent-vine);
}

.article-card__title a:hover {
    color: var(--accent-gold);
}

.article-card__text {
    font-size: var(--text-sm);
    color: var(--text-main);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.article-card__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
}

.article-card__link:hover {
    color: var(--accent-wine);
}

.articles-preview__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .article-card {
        flex-direction: row; /* Horizontal post layout */
        align-items: stretch;
    }
    
    .article-card__image {
        flex: 0 0 45%; /* Sits on left, takes 45% */
        height: 280px; /* Compressed vertical height on desktop */
        margin: var(--space-xl) 0 var(--space-xl) var(--space-xl);
    }
    
    .article-card__content {
        flex: 1;
        padding: var(--space-2xl);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .articles-main {
        padding-top: 22px;
    }

    .articles-preview__grid {
        gap: 18px;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background: transparent;
    padding: var(--space-2xl) 0;
}

.faq__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .faq__container {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: stretch;
        gap: var(--space-2xl);
    }

    .faq__image-wrapper {
        order: 1;
    }

    .faq__content {
        order: 2;
    }
}

.faq__main-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--vine-dark);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq__item {
    border: 2px solid #b8835c;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    padding: 0 var(--space-xl);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(252, 246, 235, 0.92) 0%, rgba(246, 235, 216, 0.82) 54%, rgba(238, 222, 198, 0.74) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(98, 61, 47, 0.05);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
    outline: 1px solid rgba(143, 99, 63, 0.18);
    outline-offset: -1px;
}

.faq__item:hover {
    border-color: #8f633f;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(135deg, rgba(255, 249, 238, 0.96) 0%, rgba(249, 237, 218, 0.88) 54%, rgba(239, 222, 196, 0.8) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 14px 30px rgba(127, 73, 83, 0.08);
    transform: translateY(-1px);
}

.faq__item[open] {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, rgba(253, 244, 228, 0.98) 0%, rgba(241, 224, 199, 0.9) 55%, rgba(225, 202, 171, 0.86) 100%);
    border-color: #8f633f;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 16px 34px rgba(127, 73, 83, 0.1);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-xl) 0;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    list-style: none;
}

.faq__question-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.faq__question-text {
    min-width: 0;
}

.faq__icon {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.faq__icon::before {
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    background: var(--site-icon-color);
    -webkit-mask: var(--faq-icon-mask) center / contain no-repeat;
    mask: var(--faq-icon-mask) center / contain no-repeat;
}

.faq__icon--price {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='8' cy='16.5' rx='3.5' ry='1.4'/%3E%3Cpath d='M4.5 12v4.5c0 1.5 7 1.5 7 0V12'/%3E%3Cellipse cx='8' cy='12' rx='3.5' ry='1.4'/%3E%3Cellipse cx='15.5' cy='13' rx='3' ry='1.2'/%3E%3Cpath d='M12.5 8.5V13c0 1.4 6 1.4 6 0V8.5'/%3E%3Cellipse cx='15.5' cy='8.5' rx='3' ry='1.2'/%3E%3C/svg%3E");
}

.faq__icon--location {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s6-5.4 6-10.1A6 6 0 0 0 6 9.9C6 14.6 12 20 12 20z'/%3E%3Ccircle cx='12' cy='10' r='2.2'/%3E%3C/svg%3E");
}

.faq__icon--field {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 18.5c3.3-3.2 6.9-4.8 10.8-4.8 2.4 0 4.5.5 6.2 1.5'/%3E%3Cpath d='M5.5 21c2.4-2.2 5.1-3.4 8.2-3.4 2.2 0 4.1.5 5.7 1.4'/%3E%3Cpath d='M9 13c.8-3 2-5.3 3.7-6.9 1.9 1.7 3 3.9 3.4 6.6'/%3E%3Cpath d='M8.5 12.2c-1.6-1.1-3.1-1.5-4.6-1.2.8 1.8 2.2 3 4.3 3.4'/%3E%3Cpath d='M15.2 12.8c1.8-1 3.4-1.3 4.9-.6-.9 1.8-2.4 2.7-4.4 3'/%3E%3C/svg%3E");
}

.faq__icon--calc {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='3.5' width='12' height='17' rx='2'/%3E%3Cpath d='M9 7.5h6'/%3E%3Cpath d='M9 11h1.5'/%3E%3Cpath d='M12 11h1.5'/%3E%3Cpath d='M15 11h0'/%3E%3Cpath d='M9 14h1.5'/%3E%3Cpath d='M12 14h1.5'/%3E%3Cpath d='M15 14h0'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

.faq__icon--grape {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.5 6c1.4-1.3 2.9-1.9 4.5-1.6-.1 1.7-1 3.1-2.7 4.2'/%3E%3Cpath d='M12 7.5c-.4-1.9 0-3.4 1.3-4.7 1.5 1.1 2.2 2.6 2.1 4.6'/%3E%3Ccircle cx='9' cy='11.5' r='1.8'/%3E%3Ccircle cx='12.5' cy='11.5' r='1.8'/%3E%3Ccircle cx='7.2' cy='14.8' r='1.8'/%3E%3Ccircle cx='10.8' cy='14.8' r='1.8'/%3E%3Ccircle cx='9' cy='18.1' r='1.8'/%3E%3Cpath d='M12.1 7.3c-1 1.2-1.5 2.7-1.5 4.2'/%3E%3C/svg%3E");
}

.faq__icon--calendar {
    --faq-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='6' width='15' height='13.5' rx='2'/%3E%3Cpath d='M8 3.8v4'/%3E%3Cpath d='M16 3.8v4'/%3E%3Cpath d='M4.5 10h15'/%3E%3Cpath d='M8 13.3h1.5'/%3E%3Cpath d='M11.8 13.3h1.5'/%3E%3Cpath d='M15.6 13.3h0'/%3E%3Cpath d='M8 16.4h1.5'/%3E%3Cpath d='M11.8 16.4h1.5'/%3E%3C/svg%3E");
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform var(--transition-fast);
}

.section__title--centered {
    margin-inline: auto;
}

.service-card__actions {
    display: flex;
    justify-content: center;
    margin-top: auto;
    text-align: center;
}

.case-card__image--planting {
    background-image: url('../images/tip-planting.png');
}

.case-card__image--pruning {
    background-image: url('../images/tip-pruning.png');
}

.case-card__image--watering {
    background-image: url('../images/tip-watering.png');
}

.case-card__image--planting,
.case-card__image--pruning,
.case-card__image--watering {
    background-position: center;
    background-size: cover;
}

.faq__item[open] .faq__question::after {
    content: '−';
    color: var(--vine-dark);
}

.faq__answer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq__answer p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .faq__question-main {
        gap: 0.75rem;
    }

    .faq__icon {
        flex-basis: 2rem;
        width: 2rem;
        height: 2rem;
    }

    .faq__icon::before {
        width: 1rem;
        height: 1rem;
    }
}

.faq__image-wrapper {
    width: 100%;
    height: 400px; /* Safe default for mobile where columns stack */
    border-radius: var(--radius-lg);
    border: 3px solid #b8835c;
    padding: 6px;
    background-clip: content-box !important;
    background-color: transparent;
    position: relative;
    isolation: isolate;
}

.faq__image-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(184, 131, 92, 0.18) 0%, rgba(143, 99, 63, 0.24) 100%);
    border-radius: var(--radius-lg);
}

.faq__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-lg) - 6px);
}

/* On desktop, image is bound exactly to the stretched column's height */
@media (min-width: 992px) {
    .faq__image-wrapper {
        height: auto;
        min-height: 0;
    }
    .faq__image {
        position: absolute;
        top: 6px;
        left: 6px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
    }
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(164, 195, 178, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.final-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.final-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.final-cta__form {
    margin-bottom: var(--space-xl);
}

.final-cta__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.final-cta__field input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--graphite);
    background-color: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.final-cta__field input:focus {
    border-color: var(--light-sage);
    box-shadow: 0 0 0 4px rgba(164, 195, 178, 0.3);
}

.final-cta__field input::placeholder {
    color: var(--mineral-grey);
}

.final-cta__submit {
    width: 100%;
}

.final-cta__consent {
    font-size: var(--text-xs);
    opacity: 0.7;
    color: var(--light-sage);
}

.final-cta__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.final-cta__contact {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.final-cta__contact:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .final-cta__form-row {
        flex-direction: row;
        align-items: flex-end;
    }
    
    .final-cta__field {
        flex: 1;
    }
    
    .final-cta__submit {
        width: auto;
    }
}

/* ==========================================================================
   LUXURY POSTER CARDS (SERVICES PAGE ONLY)
   ========================================================================== */

.services-page {
    background-color: #f7f3ec;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
    margin-top: var(--space-xl);
    perspective: 2000px;
}

.services-page .service-card {
    height: 620px;
    background: transparent !important;
    cursor: pointer;
    padding: 0 !important;
    border: none !important;
    border-radius: 40px;
    transition: all 0.4s ease;
}

.services-page .service-card:hover {
    border-color: var(--vine-gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.12);
}

.services-page .service-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.services-page .service-card.is-flipped .service-card__inner {
    transform: rotateY(180deg);
}

.services-page .service-card__front, 
.services-page .service-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.services-page .service-card__front {
    padding: 3rem 2rem 3.5rem 2rem;
    justify-content: space-between;
    text-align: center;
}

.services-page .service-card__front img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.services-page .service-card:hover .service-card__front img {
    transform: scale(1.08);
}

.services-page .service-card__front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.3) 25%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.4) 85%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.services-page .service-card__title {
    position: relative;
    z-index: 10; /* High priority */
    isolation: isolate; /* Creates a clean stacked context for the pseudo-glass */
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    padding: 1rem 2.5rem;
    margin: 0 auto;
    transition: all 0.6s ease;
    
    /* Strong Gold Fallback for visibility */
    color: #c5a059;
    
    /* Robust Metallic Text Gradient */
    background: linear-gradient(135deg, #c5a059 0%, #f3e2ba 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-page .service-card__title::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.services-page .service-card:hover .service-card__title {
    transform: translateY(-5px) scale(1.02);
}

.services-page .service-card:hover .service-card__title::after {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.services-page .btn-flip {
    position: relative;
    z-index: 3;
    background: var(--button-premium-fill) !important;
    color: var(--button-premium-text) !important;
    border: 1px solid var(--button-premium-border);
    padding: 1.1rem 1rem; /* Vertical padding only, horiz is fixed */
    width: 240px; /* FIXED WIDTH */
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    box-shadow: var(--button-premium-shadow);
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
}

.services-page .service-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background-color: #f8f4eb;
    background-image: 
        linear-gradient(45deg, rgba(197, 160, 89, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(197, 160, 89, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(197, 160, 89, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(197, 160, 89, 0.03) 75%);
    background-size: 24px 24px;
    padding: 3rem 2rem 3.5rem 2rem; /* SYNCED WITH FRONT */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    z-index: 5;
    border: 1px solid rgba(197, 160, 89, 0.24);
}

.services-page .service-card__back-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: #c5a059;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    width: 100%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 0.6rem;
}

.services-page .service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.services-page .service-card__list li {
    font-size: 1.0rem;
    color: var(--vine-dark);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.3;
}

.services-page .service-card__list li::before {
    content: '→';
    color: #c5a059;
}

.services-page .btn-back {
    margin-top: auto;
    background: var(--button-premium-fill);
    color: var(--button-premium-text) !important;
    text-decoration: none;
    padding: 1.1rem 1rem; /* Vertical padding exactly like front */
    width: 240px; /* FIXED WIDTH SYNCED WITH FRONT */
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.4s ease;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    box-shadow: var(--button-premium-shadow);
    border: 1px solid var(--button-premium-border);
}

.services-page .btn-back:hover {
    background: var(--button-premium-fill-hover);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.46),
        0 18px 32px rgba(109, 67, 54, 0.24);
    transform: translateY(-3px);
}

.btn-back:hover {
    background: var(--button-premium-fill-hover);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.46),
        0 18px 32px rgba(109, 67, 54, 0.24);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .service-card {
        padding: 2rem 1rem;
    }
}

@media (min-width: 768px) {
    .services-page .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-page .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.services-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.services-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.services-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .service-block__content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CASES PAGE ===== */
.cases-page {
    background: var(--bg-gradient-warm);
}

.cases-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.cases-filter__btn {
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #71463f;
    background: var(--button-premium-soft);
    border: 1px solid rgba(191, 148, 67, 0.42);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.24),
        0 10px 18px rgba(109, 67, 54, 0.08);
    backdrop-filter: blur(10px);
}

.cases-filter__btn:hover {
    border-color: var(--button-premium-border);
    background: var(--button-premium-fill-hover);
    color: var(--button-premium-text);
}

.cases-filter__btn--active,
.cases-filter__btn--active:hover {
    background: var(--button-premium-fill);
    border-color: var(--button-premium-border);
    color: var(--button-premium-text);
    box-shadow: var(--button-premium-shadow);
}

.cases-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.case-full {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent-gold);
}

.case-full__header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--pale-sage);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--warm-cream) 100%);
}

.case-full__category {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--cold-sage);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-full__title {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin: var(--space-sm) 0;
    color: var(--vine-dark);
}

.case-full__location {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
}

.case-full__content {
    padding: var(--space-xl);
}

.case-full__image {
    height: 250px;
    background-color: transparent;
    border-radius: calc(var(--radius-md) - 6px);
    margin-bottom: var(--space-xl);
    border: 3px solid #c5a059;
    padding: 6px;
    background-clip: content-box !important;
    position: relative;
    isolation: isolate;
}

.case-full__image::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(166, 124, 0, 0.2) 100%);
    border-radius: var(--radius-md);
}

.case-full__placeholder {
    width: 100%;
    height: 100%;
    background: var(--vine-gradient);
    position: relative;
}

.case-full__placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(164, 195, 178, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 162, 39, 0.15) 0%, transparent 40%);
}

.case-full__subtitle {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--vine-dark);
}

.case-full__subtitle:first-of-type {
    margin-top: 0;
}

.case-full__description p {
    font-size: var(--text-base);
    color: var(--mineral-grey);
    line-height: 1.8;
}

.case-full__stages {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.case-stage {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: var(--warm-cream);
    border-radius: var(--radius-md);
}

.case-stage__number {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    color: var(--site-icon-color);
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.case-stage__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--vine-dark);
}

.case-stage__content p {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
    margin: 0;
    line-height: 1.7;
}

.cases-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cases-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cases-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cases-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.cases-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.cases-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .case-full__image {
        height: 350px;
    }
}

/* ===== PROCESS PAGE ===== */
.process-page {
    background: var(--bg-main);
}

.process-page .page-root {
    padding-top: 0;
}

.process-hero {
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.process-hero__image,
.process-hero__overlay {
    position: absolute;
    inset: 0;
}

.process-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.process-hero__overlay {
    background:
        linear-gradient(90deg, rgba(26, 31, 28, 0.74) 0%, rgba(26, 31, 28, 0.52) 54%, rgba(26, 31, 28, 0.24) 100%),
        linear-gradient(180deg, rgba(26, 31, 28, 0.1) 0%, rgba(26, 31, 28, 0.58) 100%);
}

.process-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.process-hero__content {
    max-width: 1040px;
    text-align: center;
}

.process-hero__title {
    margin-bottom: var(--space-lg);
    max-width: 1040px;
    font-family: var(--font-accent);
    font-size: 5.5rem;
    line-height: 1;
    color: #f7ead0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.process-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 253, 245, 0.9);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.process-flow {
    background: var(--bg-main);
}

.process-flow__layout {
    display: grid;
    gap: var(--space-2xl);
    align-items: stretch;
}

.process-flow__media {
    min-height: 520px;
    height: 100%;
    padding: 6px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: transparent;
    border: 3px solid #c5a059;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-flow__media::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(166, 124, 0, 0.2) 100%);
    border-radius: var(--radius-md);
}

.process-flow__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-md) - 6px);
}

.process-flow__timeline {
    position: relative;
    display: grid;
    gap: var(--space-md);
    padding-left: var(--space-xl);
}

.process-flow__timeline::before {
    content: '';
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 16px;
    width: 1px;
    background: rgba(197, 160, 89, 0.7);
}

.process-flow__item {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
    min-height: 0;
    padding: clamp(1rem, 1.6vw, var(--space-xl));
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-flow__number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fffdf5;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    border-radius: 999px;
    box-shadow: var(--site-icon-shadow);
}

.process-flow__item h3 {
    margin-bottom: var(--space-sm);
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    color: var(--accent-vine);
}

.process-flow__item p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.7;
}

.process-flow__cards {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.process-flow__card {
    padding: var(--space-xl);
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-flow__card h3 {
    margin-bottom: var(--space-sm);
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    color: var(--accent-vine);
}

.process-flow__card p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.7;
}

.process-cta {
    padding-top: 0;
    background: var(--bg-main);
}

.process-cta__inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-3xl);
    background: #ffffff;
    border: 1px solid #a67c00;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.process-cta__label {
    display: inline-block;
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-wine);
}

.process-cta__inner h2 {
    margin: 0 0 var(--space-md);
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--accent-vine);
}

.process-cta__inner p {
    max-width: 680px;
    margin: 0;
    color: var(--text-main);
    font-size: var(--text-lg);
    line-height: 1.7;
}

.process-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

.process-cta__phone {
    color: var(--accent-vine);
    font-size: var(--text-lg);
    font-weight: 700;
    border-bottom: 1px solid rgba(33, 64, 49, 0.32);
}

@media (min-width: 768px) {
    .process-flow__cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1100px) {
    .process-hero {
        min-height: 380px;
    }

    .process-flow__layout {
        grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
        gap: clamp(2rem, 3vw, var(--space-2xl));
        align-items: stretch;
        min-height: clamp(700px, 78vw, 920px);
    }

    .process-flow__media {
        min-height: 0;
    }

    .process-flow__timeline {
        grid-template-rows: repeat(5, minmax(0, 1fr));
        align-content: stretch;
        gap: clamp(1rem, 1.45vw, var(--space-lg));
    }

    .process-flow__item h3 {
        margin-bottom: 0.35rem;
        font-size: clamp(1.45rem, 1.8vw, var(--text-2xl));
    }

    .process-flow__item p {
        line-height: 1.55;
    }

    .process-cta__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 767px) {
    .process-hero {
        min-height: 420px;
    }

    .process-hero__image {
        object-fit: cover;
        object-position: 32% 45%;
    }

    .process-hero__container {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-xl);
    }

    .process-hero__title {
        font-size: 3rem;
    }

    .process-cta__inner h2 {
        font-size: 2.25rem;
    }

    .process-hero__text {
        font-size: var(--text-lg);
    }

    .process-flow__timeline {
        padding-left: 0;
    }

    .process-flow__timeline::before {
        display: none;
    }

    .process-flow__item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .process-cta__inner {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* ===== ABOUT PAGE ===== */
.about-page-body .page-root {
    padding-top: 0;
}

.about-hero {
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.about-hero__image,
.about-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.about-hero__overlay {
    background:
        linear-gradient(90deg, rgba(26, 31, 28, 0.74) 0%, rgba(26, 31, 28, 0.52) 54%, rgba(26, 31, 28, 0.24) 100%),
        linear-gradient(180deg, rgba(26, 31, 28, 0.1) 0%, rgba(26, 31, 28, 0.58) 100%);
}

.about-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.about-hero__content {
    max-width: 1060px;
    text-align: center;
}

.about-hero__label,
.about-section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
    color: #c5a059;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-hero__title {
    max-width: 1040px;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-accent);
    font-size: 5.2rem;
    font-weight: 600;
    line-height: 1;
    color: #f7ead0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.about-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 253, 245, 0.9);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.about-page {
    background: var(--bg-main);
    padding-top: var(--space-3xl);
}

.about-content {
    max-width: none;
    margin: 0 auto;
}

.about-story {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.about-story__media {
    min-height: 420px;
    height: 100%;
    padding: 6px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: transparent;
    border: 3px solid #c5a059;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.about-story__media::before,
.about-geo__map::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(166, 124, 0, 0.2) 100%);
    border-radius: 8px;
}

.about-story__media img,
.about-geo__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.about-story__content {
    max-width: 680px;
}

.about-section-title {
    margin: 0 0 var(--space-lg);
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
    font-weight: 600;
    line-height: 1.08;
    color: var(--accent-vine);
}

.about-story__content p,
.about-section-head p {
    margin: 0 0 var(--space-md);
    font-size: var(--text-lg);
    line-height: 1.75;
    color: var(--text-main);
}

.about-story__lead {
    color: var(--accent-vine);
    font-weight: 600;
}

.about-facts {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-fact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.about-fact__value,
.competency__number,
.approach-item__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--site-icon-color);
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    border-radius: 999px;
    box-shadow: var(--site-icon-shadow);
}

.about-fact__text {
    color: var(--accent-vine);
    font-weight: 700;
}

.about-geo {
    width: 100vw;
    margin: 0 calc(50% - 50vw) var(--space-4xl);
    padding: var(--space-4xl) var(--container-padding);
    background: #1a1f1c;
    color: #fffdf5;
}

.about-geo > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.about-section-head {
    max-width: 780px;
    margin-bottom: var(--space-2xl);
}

.about-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-geo .about-section-title,
.about-geo .about-section-head p {
    color: #fffdf5;
}

.about-geo .about-section-head {
    max-width: var(--container-max);
    text-align: center;
}

.about-geo .about-section-title {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 3.15vw, 3.9rem);
    text-align: center;
    white-space: nowrap;
}

.about-geo__layout {
    display: grid;
    gap: var(--space-2xl);
    align-items: stretch;
}

.about-geo__map {
    min-height: 360px;
    padding: 6px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border: 3px solid #c5a059;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.about-geo__regions {
    display: grid;
    gap: var(--space-md);
}

.about-region {
    display: grid;
    gap: var(--space-sm);
    align-content: center;
    padding: var(--space-xl);
    background: rgba(255, 253, 245, 0.06);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
}

.about-region__status {
    width: max-content;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-region__status--active {
    background: linear-gradient(135deg, #c5a059 0%, #a67c00 100%);
    color: #fffdf5;
}

.about-region__status--future {
    background: rgba(255, 253, 245, 0.1);
    color: #f7ead0;
}

.about-region__name {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.1;
    color: #f7ead0;
}

.about-region__note {
    color: rgba(255, 253, 245, 0.72);
    font-size: var(--text-sm);
}

.about-competencies {
    margin-bottom: var(--space-4xl);
}

.about-competencies__grid {
    display: grid;
    gap: var(--space-lg);
}

.competency {
    display: grid;
    gap: var(--space-md);
    align-content: start;
    padding: var(--space-xl);
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.competency__title {
    margin: 0;
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent-vine);
}

.competency__text {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
    margin: 0;
    line-height: 1.7;
}

.about-clients {
    margin-bottom: var(--space-4xl);
}

.about-clients__grid {
    display: grid;
    gap: var(--space-md);
}

.client-type {
    padding: var(--space-lg) var(--space-xl);
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    transition: all var(--transition-fast);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.client-type:hover {
    border-color: #a67c00;
    transform: translateY(-3px);
}

.client-type__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--accent-vine);
}

.about-approach {
    margin-bottom: var(--space-xl);
}

.about-approach__list {
    display: grid;
    gap: var(--space-lg);
}

.approach-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-card);
}

.approach-item__title {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--accent-vine);
}

.approach-item__text {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
    margin: 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .about-facts,
    .about-competencies__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .about-geo__layout {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .about-geo__regions {
        order: 1;
    }

    .about-geo__map {
        order: 2;
    }

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

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

@media (max-width: 767px) {
    .about-hero {
        min-height: 420px;
    }

    .about-hero__title {
        font-size: 3rem;
    }

    .about-hero__text {
        font-size: var(--text-lg);
    }

    .about-story__media,
    .about-geo__map {
        min-height: 320px;
    }

    .about-section-title {
        font-size: var(--text-3xl);
    }

    .about-geo .about-section-title {
        white-space: normal;
    }

    .about-geo {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
    }

    .about-fact,
    .approach-item {
        grid-template-columns: 1fr;
    }

    .competency,
    .approach-item,
    .about-region {
        padding: var(--space-lg);
    }
}

@media (max-width: 420px) {
    .about-hero__title {
        font-size: 2.65rem;
    }

    .about-clients__grid {
        gap: var(--space-sm);
    }
}

.about-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.about-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ===== BLOG PAGE ===== */
.blog-page,
.articles-page {
    background: var(--bg-main);
}

.blog-page-body .page-root {
    padding-top: 0;
}

.blog-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.blog-hero__image,
.blog-hero__overlay {
    position: absolute;
    inset: 0;
}

.blog-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 86%;
    transform: scale(1.02);
}

.blog-hero__overlay {
    background:
        linear-gradient(90deg, rgba(26, 31, 28, 0.74) 0%, rgba(26, 31, 28, 0.52) 54%, rgba(26, 31, 28, 0.24) 100%),
        linear-gradient(180deg, rgba(26, 31, 28, 0.1) 0%, rgba(26, 31, 28, 0.58) 100%);
}

.blog-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.blog-hero__content {
    max-width: 1060px;
    text-align: center;
}

.blog-hero__title {
    max-width: 1040px;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-accent);
    font-size: 5.2rem;
    font-weight: 600;
    line-height: 1;
    color: #f7ead0;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.blog-hero__lead {
    max-width: 820px;
    margin: 0 auto;
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 253, 245, 0.9);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.blog-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.blog-consult-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-xl);
    align-items: center;
    margin: 0 0 var(--space-3xl);
    padding: clamp(1.35rem, 2.2vw, 2rem);
    color: var(--vine-dark);
    background:
        linear-gradient(135deg, rgba(255, 253, 245, 0.84), rgba(246, 235, 213, 0.72));
    border: 1px solid rgba(197, 160, 89, 0.42);
    border-radius: 10px;
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.16),
        0 18px 42px rgba(42, 31, 22, 0.08);
}

.blog-consult-strip h2 {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-accent);
    font-size: clamp(1.65rem, 2.2vw, 2.15rem);
    color: var(--accent-vine);
}

.blog-consult-strip p {
    max-width: 860px;
    margin: 0;
    line-height: 1.7;
    color: var(--graphite);
}

.blog-category {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    text-align: center;
    background: var(--accent-vine);
    border: 1px solid rgba(255, 235, 178, 0.78);
    border-radius: 10px;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.blog-category:hover,
.blog-category--active {
    transform: translateY(-4px);
    border-color: rgba(255, 241, 207, 0.92);
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22);
}

.blog-category__visual {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;
    background-image: url("../images/blog-category-topics-sprite.png?v=20260510-blog-topic-cards");
    background-repeat: no-repeat;
    background-size: 400% 200%;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.blog-category__visual--preparation {
    background-position: 0 0;
}

.blog-category__visual--agrochemistry {
    background-position: 33.333% 0;
}

.blog-category__visual--planting {
    background-position: 66.667% 0;
}

.blog-category__visual--trellis {
    background-position: 100% 0;
}

.blog-category__visual--irrigation {
    background-position: 0 100%;
}

.blog-category__visual--care {
    background-position: 33.333% 100%;
}

.blog-category__visual--service {
    background-position: 66.667% 100%;
}

.blog-category__visual--calendar {
    background-position: 100% 100%;
}

.blog-category:hover .blog-category__visual,
.blog-category--active .blog-category__visual {
    transform: scale(1.07);
}

.blog-category::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 48%, rgba(36, 27, 20, 0.34) 0%, rgba(36, 27, 20, 0.22) 28%, rgba(36, 27, 20, 0) 58%),
        linear-gradient(180deg, rgba(20, 18, 16, 0.14) 0%, rgba(20, 18, 16, 0.16) 42%, rgba(34, 25, 18, 0.58) 100%);
}

.blog-category::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), inset var(--transition-base);
}

.blog-category:hover::before,
.blog-category--active::before {
    inset: 7px;
    border-color: rgba(255, 246, 222, 0.9);
    box-shadow:
        inset 0 0 0 1px rgba(197, 160, 89, 0.46),
        0 0 28px rgba(255, 241, 207, 0.18);
}

.blog-category__title {
    display: block;
    position: absolute;
    z-index: 3;
    left: var(--space-md);
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-accent);
    font-size: clamp(1.85rem, 2.1vw, 2.2rem);
    font-weight: 700;
    line-height: 1.08;
    text-wrap: balance;
    color: #fff1cf;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.blog-category__text {
    display: block;
    position: relative;
    z-index: 3;
    max-width: 95%;
    color: rgba(255, 246, 222, 0.94);
    font-size: clamp(1rem, 1.28vw, 1.15rem);
    font-weight: 500;
    line-height: 1.48;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.blog-start {
    margin-bottom: var(--space-3xl);
}

.blog-start__head,
.blog-main__head {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.blog-start__head {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    column-gap: var(--space-lg);
    min-height: 72px;
    margin: var(--space-2xl) auto var(--space-xl);
    text-align: center;
}

.blog-hero .section__label {
    position: static;
    transform: none;
    margin-bottom: var(--space-md);
}

.blog-start__head h2,
.blog-main__head h2 {
    margin-top: var(--space-sm);
    font-family: var(--font-accent);
    font-size: var(--text-4xl);
}

.blog-start__head h2 {
    max-width: none;
    width: 100%;
    margin: 0;
    justify-self: stretch;
    text-align: center;
    font-family: var(--font-primary);
    font-size: clamp(2.35rem, 3.35vw, var(--text-4xl));
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--accent-vine);
}

.blog-start__head .section__label {
    position: static;
    transform: none;
    margin: 0;
    flex: 0 0 auto;
    justify-self: start;
}

.blog-start__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
}

.blog-start__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    max-width: 980px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    background: rgba(255, 253, 245, 0.72);
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 10px;
}

.blog-start__cta p {
    flex: 1 1 520px;
    margin: 0;
    color: var(--vine-dark);
    font-size: var(--text-lg);
    line-height: 1.55;
}

@media (min-width: 761px) {
    .blog-main__head .section__label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0;
    }

    .blog-main__head h2 {
        max-width: min(1100px, 74vw);
    }
}

@media (min-width: 761px) {
    .blog-main__head h2 {
        white-space: nowrap;
    }
}

.blog-start-card {
    min-height: 330px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    padding: var(--space-lg);
    text-align: center;
    overflow: hidden;
    background: var(--accent-vine);
    border: 1px solid rgba(255, 235, 178, 0.78);
    border-radius: 10px;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16);
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color var(--transition-base), box-shadow var(--transition-base);
}

.blog-start-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 241, 207, 0.92);
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22);
}

.blog-start-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), inset var(--transition-base);
}

.blog-start-card:hover::before {
    inset: 7px;
    border-color: rgba(255, 246, 222, 0.9);
    box-shadow:
        inset 0 0 0 1px rgba(197, 160, 89, 0.46),
        0 0 28px rgba(255, 241, 207, 0.18);
}

.blog-start-card__visual {
    position: absolute;
    inset: 0;
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    background: transparent;
    z-index: -2;
}

.blog-start-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 46%, rgba(36, 27, 20, 0.32) 0%, rgba(36, 27, 20, 0.18) 30%, rgba(36, 27, 20, 0) 58%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.12) 0%, rgba(16, 18, 15, 0.2) 38%, rgba(34, 25, 18, 0.66) 100%);
    pointer-events: none;
}

.blog-start-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform var(--transition-base);
}

.blog-start-card:hover .blog-start-card__visual img {
    transform: scale(1.04);
}

.blog-start-card__label,
.blog-lead__label {
    width: fit-content;
    padding: 7px 11px;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bg-white);
    background: var(--accent-gold);
    border-radius: 6px;
}

.blog-start-card__label {
    margin: 0 auto var(--space-md);
    background: rgba(255, 241, 207, 0.14);
    border: 1px solid rgba(255, 241, 207, 0.78);
    color: #fff1cf;
    border-radius: 999px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.blog-start-card__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: 100%;
}

.blog-start-card__title {
    display: block;
    max-width: 96%;
    margin: 0 auto;
    font-family: var(--font-accent);
    font-size: clamp(1.7rem, 2.1vw, 2.3rem);
    font-weight: 700;
    line-height: 1.14;
    color: #fff1cf;
    align-self: center;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.blog-start-card__text {
    display: block;
    max-width: 92%;
    margin: 0 auto;
    align-self: end;
    color: rgba(255, 246, 222, 0.94);
    font-size: clamp(0.9rem, 1.02vw, 1rem);
    font-weight: 500;
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    align-items: start;
}

.blog-sidebar {
    display: grid;
    gap: var(--space-md);
    position: sticky;
    top: 96px;
}

.blog-lead {
    padding: var(--space-xl);
    color: var(--bg-white);
    background: var(--accent-vine);
    border: 1px solid #a67c00;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.blog-lead h2 {
    margin: var(--space-md) 0;
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
}

.blog-lead p {
    color: rgba(255, 253, 245, 0.78);
}

.blog-editor-note {
    padding: var(--space-lg);
    background: rgba(255, 253, 245, 0.62);
    border: 1px solid rgba(197, 160, 89, 0.24);
    border-radius: 8px;
}

.blog-editor-note h3 {
    margin-bottom: var(--space-md);
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
}

.blog-editor-note ul {
    display: grid;
    gap: var(--space-sm);
    padding-left: 18px;
    color: var(--text-muted);
}

.blog-main {
    min-width: 0;
}

.articles-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.articles-filter__btn {
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--vine-dark);
    background-color: var(--bg-white);
    border: 1px solid rgba(197, 160, 89, 0.38);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.articles-filter__btn:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 253, 245, 0.78);
}

.articles-filter__btn.active,
.articles-filter__btn--active,
.articles-filter__btn--active:hover {
    background: var(--accent-vine);
    border-color: var(--accent-vine);
    color: var(--bg-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
}

.blog-main .article-card {
    min-height: 430px;
    height: 100%;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    background: var(--accent-vine);
    border: 1px solid rgba(255, 235, 178, 0.78);
    border-radius: 10px;
    outline: 0;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16);
}

.blog-main .article-card:hover {
    border-color: rgba(255, 241, 207, 0.92);
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22);
}

.blog-main .article-card::before,
.blog-main .article-card::after {
    display: none;
}

.blog-main .article-card__image {
    flex: none;
    position: absolute;
    inset: 0;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background-image: url("../images/blog-topic-article/preparation.png?v=20260510-topic-article");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.blog-main .article-card[data-category="preparation"] .article-card__image {
    background-image: url("../images/blog-topic-article/preparation.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="agrochemistry"] .article-card__image {
    background-image: url("../images/blog-topic-article/agrochemistry.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="planting"] .article-card__image {
    background-image: url("../images/blog-topic-article/planting.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="marking"] .article-card__image {
    background-image: url("../images/blog-topic-article/preparation.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="trellis"] .article-card__image {
    background-image: url("../images/blog-topic-article/trellis.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="irrigation"] .article-card__image {
    background-image: url("../images/blog-topic-article/irrigation.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="care"] .article-card__image {
    background-image: url("../images/blog-topic-article/care.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="service"] .article-card__image {
    background-image: url("../images/blog-topic-article/service.png?v=20260510-topic-article");
}

.blog-main .article-card[data-category="calendar"] .article-card__image {
    background-image: url("../images/blog-topic-article/calendar.png?v=20260510-topic-article");
}

.blog-main .article-card__image::before {
    display: none;
}

.blog-main .article-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(36, 27, 20, 0.38) 0%, rgba(36, 27, 20, 0.22) 30%, rgba(36, 27, 20, 0) 58%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.2) 0%, rgba(16, 18, 15, 0.24) 38%, rgba(34, 25, 18, 0.72) 100%);
    pointer-events: none;
}

.blog-main .article-card__image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0;
}

.blog-main .article-card:hover .article-card__image {
    transform: scale(1.06);
}

.blog-main .article-card__content {
    flex: 1;
    min-height: 430px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: var(--space-xl);
}

.blog-main .article-card__content::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
}

.blog-main .article-card__badges {
    justify-content: center;
    align-self: start;
    max-width: calc(100% - var(--space-md));
    margin-bottom: 0;
}

.blog-main .blog-badge {
    min-height: 31px;
    border-color: rgba(255, 241, 207, 0.72);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.16);
    color: #fff1cf;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 18px rgba(28, 20, 14, 0.12);
}

.blog-main .blog-badge--category {
    background: rgba(33, 64, 49, 0.8);
    border-color: rgba(255, 241, 207, 0.82);
    color: #fff1cf;
}

.blog-main .blog-badge--region {
    background: rgba(255, 241, 207, 0.16);
    border-color: rgba(255, 241, 207, 0.72);
    color: #fff1cf;
}

.blog-main .article-card__date {
    position: static;
    margin-top: var(--space-sm);
    color: rgba(255, 246, 222, 0.78);
    font-size: var(--text-xs);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.blog-main .article-card__title {
    align-self: center;
    max-width: 94%;
    margin: var(--space-md) auto;
    font-family: var(--font-accent);
    font-size: clamp(1.65rem, 2.1vw, 2.25rem);
    font-weight: 700;
    line-height: 1.14;
    color: #fff1cf;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.blog-main .article-card__title a {
    color: inherit;
}

.blog-main .article-card__title a:hover {
    color: #fff6de;
}

.blog-main .article-card__text {
    align-self: end;
    max-width: 92%;
    margin: 0 auto var(--space-md);
    color: rgba(255, 246, 222, 0.94);
    font-size: clamp(0.96rem, 1.05vw, 1.06rem);
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.blog-main .article-card .btn {
    align-self: center !important;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 241, 207, 0.82);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.14);
    color: #fff1cf;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.blog-main .article-card .btn:hover {
    background: rgba(255, 241, 207, 0.24);
    color: #fff6de;
}

.articles-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.articles-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.articles-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.articles-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.articles-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.articles-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

@media (max-width: 1180px) {
    .blog-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    }

    .articles-grid {
        gap: var(--space-xl);
    }
}

@media (max-width: 920px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .blog-hero {
        min-height: 420px;
    }

    .blog-hero__container {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-xl);
    }

    .blog-hero__title {
        font-size: 3rem;
    }

    .blog-hero__lead {
        font-size: var(--text-lg);
    }

    .blog-consult-strip {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .blog-categories,
    .blog-start__grid,
    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-category,
    .blog-start-card {
        min-height: 0;
    }

    .blog-start-card {
        min-height: 310px;
    }

    .blog-category {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 390px;
    }

    .blog-hero__title {
        font-size: 2.35rem;
    }

    .blog-start__head h2,
    .blog-main__head h2 {
        font-size: var(--text-3xl);
    }

    .blog-start__head {
        grid-template-columns: 1fr;
        row-gap: var(--space-md);
        justify-items: center;
        text-align: center;
    }

    .blog-start__head h2 {
        text-align: center;
        white-space: normal;
    }

    .blog-lead,
    .blog-category {
        padding: var(--space-lg);
    }

    .blog-start-card__visual {
        height: auto;
        margin: 0;
    }

    .blog-start-card {
        min-height: 300px;
    }

    .blog-category {
        min-height: 230px;
    }

    .blog-category__title {
        font-size: var(--text-2xl);
    }
}

.process-hero,
.about-hero {
    height: 436px;
    min-height: 436px;
}

@media (max-width: 920px) {
    .process-hero,
    .about-hero {
        height: 602px;
        min-height: 602px;
    }
}

@media (max-width: 768px) {
    .process-hero,
    .about-hero {
        height: 685px;
        min-height: 685px;
    }
}

@media (max-width: 760px) {
    .process-hero,
    .about-hero {
        height: 420px;
        min-height: 420px;
    }
}

@media (max-width: 520px) {
    .process-hero,
    .about-hero {
        height: 438px;
        min-height: 438px;
    }
}

@media (max-width: 480px) {
    .process-hero,
    .about-hero {
        height: 390px;
        min-height: 390px;
    }
}

@media (max-width: 420px) {
    .process-hero,
    .about-hero {
        height: 417px;
        min-height: 417px;
    }
}

/* ===== ARTICLE PAGE ===== */
.article-page {
    background: var(--bg-white);
    padding: var(--space-2xl) 0;
}

.article-page__loading {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--mineral-grey);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: var(--space-xl);
    color: var(--mineral-grey);
    font-size: var(--text-sm);
}

.article-breadcrumbs a {
    color: var(--vine-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(36, 74, 55, 0.22);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    gap: 0;
    align-items: start;
}

.article-main-column {
    min-width: 0;
    position: relative;
}

.article-main-column::before {
    content: '';
    position: absolute;
    inset: 220px 0 140px;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(197, 160, 89, 0.22), rgba(197, 160, 89, 0.06) 12%, transparent 22%, transparent 78%, rgba(197, 160, 89, 0.06) 88%, rgba(197, 160, 89, 0.22)),
        radial-gradient(circle at 18% 18%, rgba(218, 235, 248, 0.34), transparent 36%),
        radial-gradient(circle at 82% 36%, rgba(201, 162, 39, 0.14), transparent 34%);
    border-radius: 34px;
    pointer-events: none;
}

.article-longread-hero {
    margin-bottom: var(--space-2xl);
    padding: clamp(1.2rem, 2.8vw, 2.35rem);
    color: var(--vine-dark);
    background:
        radial-gradient(circle at 12% 10%, rgba(218, 235, 248, 0.58), transparent 33%),
        radial-gradient(circle at 86% 16%, rgba(201, 162, 39, 0.14), transparent 32%),
        linear-gradient(145deg, rgba(255, 253, 245, 0.95), rgba(247, 241, 229, 0.82));
    border: 1px solid rgba(197, 160, 89, 0.48);
    border-radius: 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.62),
        0 28px 70px rgba(42, 31, 22, 0.12);
    position: relative;
    overflow: hidden;
}

.article-longread-hero::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(197, 160, 89, 0.26);
    border-radius: 16px;
    pointer-events: none;
}

.article-longread-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 58px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(36, 74, 55, 0.08), transparent 66%);
    pointer-events: none;
}

.article-sidebar-cta {
    position: sticky;
    top: 96px;
    padding: var(--space-lg);
    background: rgba(255, 253, 245, 0.78);
    border: 1px solid rgba(197, 160, 89, 0.42);
    border-radius: 12px;
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.12),
        0 18px 44px rgba(42, 31, 22, 0.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
}

.article-sidebar-cta h2 {
    margin: 0 0 var(--space-md);
    color: var(--accent-vine);
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
}

.article-sidebar-cta ul {
    display: grid;
    gap: 8px;
    margin: 0 0 var(--space-md);
    padding-left: 18px;
}

.article-sidebar-cta li {
    color: var(--vine-dark);
}

.article-sidebar-cta p {
    margin: 0 0 var(--space-md);
    color: var(--graphite);
    line-height: 1.55;
}

.article-sidebar-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.article-content__header {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.article-content__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.article-content__category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 15px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: #816743;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 253, 245, 0.72);
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 999px;
}

.article-content__date {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
}

.article-content__title {
    font-family: var(--font-accent);
    font-size: clamp(2.3rem, 5vw, 4.55rem);
    line-height: 1.08;
    margin: var(--space-lg) 0 var(--space-md);
    color: var(--vine-dark);
}

.article-longread-hero__subtitle {
    max-width: 780px;
    margin: 0;
    color: rgba(38, 51, 47, 0.78);
    font-size: clamp(1.04rem, 1.5vw, 1.22rem);
    line-height: 1.75;
}

.article-content__image {
    height: 300px;
    background-color: transparent;
    border-radius: calc(var(--radius-lg) - 6px);
    margin-bottom: var(--space-2xl);
    border: 3px solid #c5a059;
    padding: 6px;
    background-clip: content-box !important;
    position: relative;
    isolation: isolate;
}

.article-content__image::before {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(166, 124, 0, 0.2) 100%);
    border-radius: var(--radius-lg);
}

.article-content__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vine-dark) 0%, var(--vine-medium) 50%, var(--cold-sage) 100%);
    position: relative;
}

.article-content__placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201, 162, 39, 0.2) 0%, transparent 50%);
}

.article-content__image--photo {
    height: auto;
    min-height: 430px;
    margin: var(--space-xl) 0 0;
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.article-content__image--photo img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    filter: saturate(0.8) contrast(0.95);
}

.article-content__image--photo figcaption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    max-width: calc(100% - 40px);
    padding: 8px 13px;
    color: rgba(255, 253, 245, 0.94);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(24, 48, 40, 0.58);
    border: 1px solid rgba(255, 253, 245, 0.32);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.article-content__body {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--graphite);
    background:
        linear-gradient(180deg, rgba(255, 253, 245, 0.9), rgba(255, 253, 245, 0.72));
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.64),
        0 22px 56px rgba(42, 31, 22, 0.08);
    position: relative;
}

.article-content__body > p,
.article-content__body > h2,
.article-content__body > h3,
.article-content__body > ul,
.article-content__body > ol {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.article-content__body::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(197, 160, 89, 0.14);
    border-radius: 16px;
    pointer-events: none;
}

.article-content__body h2 {
    font-size: var(--text-2xl);
    margin: var(--space-2xl) 0 var(--space-lg);
    color: var(--vine-dark);
}

.article-content__body h3 {
    font-size: var(--text-xl);
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--vine-dark);
}

.article-content__body p {
    margin-bottom: var(--space-lg);
}

.article-content__body .article-lead {
    position: relative;
    z-index: 1;
    padding: var(--space-lg) var(--space-xl);
    background:
        radial-gradient(circle at 8% 14%, rgba(218, 235, 248, 0.34), transparent 38%),
        rgba(255, 253, 245, 0.82);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-left: 5px solid var(--accent-gold);
    border-radius: 12px;
    font-size: var(--text-xl);
    line-height: 1.75;
    color: var(--vine-dark);
}

.article-content__body ul,
.article-content__body ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-content__body li {
    margin-bottom: var(--space-sm);
}

.article-content__body ul li {
    list-style-type: disc;
    color: var(--vine-dark);
}

.article-content__body ol li {
    list-style-type: decimal;
    color: var(--vine-dark);
}

.article-content__body .article-cta {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--accent-vine);
    border: 1px solid #a67c00;
    border-radius: 8px;
    color: var(--bg-white);
    box-shadow: var(--shadow-premium);
}

.article-content__body .article-cta h2 {
    margin: 0 0 var(--space-md);
    color: var(--bg-white);
}

.article-content__body .article-cta p {
    color: rgba(255, 253, 245, 0.82);
}

.article-help-box,
.article-note,
.article-links-box,
.article-faq,
.article-brief,
.article-expert-quote,
.article-checklist {
    margin: var(--space-2xl) 0;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.article-help-box {
    color: var(--bg-white);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 241, 207, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(24, 74, 56, 0.96), rgba(36, 94, 76, 0.92));
    border: 1px solid rgba(197, 160, 89, 0.62);
    box-shadow: 0 20px 44px rgba(23, 48, 38, 0.16);
}

.article-help-box h2,
.article-note h2,
.article-links-box h2,
.article-faq h2 {
    margin: 0 0 var(--space-md);
    color: inherit;
    font-family: var(--font-accent);
}

.article-help-box p {
    max-width: 760px;
    color: rgba(255, 253, 245, 0.86);
}

.article-help-box .btn {
    margin-top: var(--space-sm);
}

.article-help-box--price {
    background:
        radial-gradient(circle at 90% 8%, rgba(255, 241, 207, 0.15), transparent 34%),
        linear-gradient(135deg, rgba(48, 68, 58, 0.96), rgba(24, 74, 56, 0.94));
}

.article-note,
.article-links-box,
.article-faq {
    color: var(--vine-dark);
    background: rgba(255, 253, 245, 0.74);
    border: 1px solid rgba(197, 160, 89, 0.34);
    box-shadow: 0 16px 34px rgba(42, 31, 22, 0.06);
}

.article-note--warning {
    background: rgba(255, 246, 229, 0.88);
    border-color: rgba(197, 160, 89, 0.48);
}

.article-brief {
    color: var(--vine-dark);
    background:
        linear-gradient(135deg, rgba(255, 253, 245, 0.92), rgba(236, 229, 211, 0.78));
    border: 1px solid rgba(197, 160, 89, 0.46);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        0 16px 34px rgba(42, 31, 22, 0.06);
}

.article-brief__label {
    display: inline-flex;
    margin-bottom: var(--space-sm);
    padding: 6px 12px;
    color: #816743;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(197, 160, 89, 0.44);
    border-radius: 999px;
    background: rgba(255, 253, 245, 0.62);
}

.article-brief h2,
.article-checklist h2 {
    margin: 0 0 var(--space-md);
    color: var(--vine-dark);
    font-family: var(--font-accent);
}

.article-brief ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.article-brief li {
    min-height: 100%;
    margin: 0;
    padding: 14px 14px 14px 38px;
    color: var(--vine-dark);
    line-height: 1.45;
    list-style: none;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(197, 160, 89, 0.24);
    border-radius: 10px;
    position: relative;
}

.article-brief li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 21px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.16);
}

.article-expert-quote {
    color: #fff8e8;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 253, 245, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(29, 70, 54, 0.96), rgba(46, 87, 70, 0.93));
    border: 1px solid rgba(197, 160, 89, 0.54);
    box-shadow: 0 18px 40px rgba(23, 48, 38, 0.15);
}

.article-expert-quote p {
    max-width: 760px;
    margin: 0 0 var(--space-sm);
    color: inherit;
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    line-height: 1.45;
    font-family: var(--font-accent);
}

.article-expert-quote span {
    color: rgba(255, 253, 245, 0.72);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-checklist {
    color: var(--vine-dark);
    background: rgba(255, 253, 245, 0.78);
    border: 1px solid rgba(197, 160, 89, 0.36);
    box-shadow: 0 16px 34px rgba(42, 31, 22, 0.06);
}

.article-checklist__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-sm);
}

.article-checklist__grid span {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 14px;
    color: var(--vine-dark);
    font-weight: 700;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(197, 160, 89, 0.26);
    border-radius: 10px;
}

.article-links-box__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

.article-links-box__grid a {
    display: block;
    padding: 10px 12px;
    color: var(--vine-dark);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(197, 160, 89, 0.24);
    border-radius: 8px;
    text-decoration: none;
}

.article-links-box__grid a:hover {
    border-color: rgba(197, 160, 89, 0.54);
    background: rgba(255, 255, 255, 0.9);
}

.article-faq details {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(197, 160, 89, 0.24);
}

.article-faq summary {
    cursor: pointer;
    color: var(--vine-dark);
    font-weight: 800;
}

.article-faq p {
    margin: var(--space-sm) 0 0;
}

/* Related Articles */
.related-articles {
    background: var(--bg-gradient-warm);
}

.related-articles__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--vine-dark);
}

.related-articles__grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .related-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-articles__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .article-content__image {
        height: 400px;
    }
}

@media (max-width: 1023px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-main-column::before {
        inset: 180px 0 120px;
    }

    .article-brief ul {
        grid-template-columns: 1fr;
    }

    .article-checklist__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-sidebar-cta {
        position: static;
        order: 2;
    }
}

@media (max-width: 640px) {
    .article-main-column::before {
        inset: 160px 0 100px;
        border-radius: 20px;
    }

    .article-longread-hero {
        padding: var(--space-md);
        border-radius: 14px;
    }

    .article-longread-hero::before {
        inset: 8px;
        border-radius: 10px;
    }

    .article-content__title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .article-content__image--photo,
    .article-content__image--photo img {
        min-height: 260px;
    }

    .article-content__body {
        padding: var(--space-md);
        border-radius: 16px;
    }

    .article-content__body::before {
        inset: 8px;
        border-radius: 12px;
    }

    .article-brief ul,
    .article-checklist__grid {
        grid-template-columns: 1fr;
    }

    .article-links-box__grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar-cta__actions,
    .article-help-box .btn {
        width: 100%;
    }
}

/* Related articles as service-style photo cards */
.related-articles {
    background:
        radial-gradient(circle at 18% 8%, rgba(218, 235, 248, 0.36) 0%, rgba(218, 235, 248, 0) 30%),
        linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(248, 242, 232, 0.96) 100%);
}

.related-articles__title {
    color: var(--accent-vine);
    font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    font-weight: 800;
}

.related-articles__grid {
    gap: clamp(1rem, 1.6vw, 1.45rem);
}

.related-articles .article-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
    overflow: hidden;
    isolation: isolate;
    padding: 0 !important;
    text-align: center;
    background:
        radial-gradient(circle at 50% 46%, rgba(36, 27, 20, 0.34) 0%, rgba(36, 27, 20, 0.22) 34%, rgba(36, 27, 20, 0.06) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.2) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.76) 100%),
        var(--article-bg, none),
        var(--accent-vine) !important;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 235, 178, 0.78) !important;
    border-radius: 10px !important;
    outline: 0 !important;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16) !important;
}

.related-articles .article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 241, 207, 0.92) !important;
    background:
        radial-gradient(circle at 50% 46%, rgba(36, 27, 20, 0.3) 0%, rgba(36, 27, 20, 0.2) 34%, rgba(36, 27, 20, 0.05) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.18) 0%, rgba(16, 18, 15, 0.32) 42%, rgba(24, 18, 13, 0.72) 100%),
        var(--article-bg, none),
        var(--accent-vine) !important;
    background-position: center;
    background-size: cover;
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22) !important;
}

.related-articles .article-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 8px !important;
    z-index: 4 !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none !important;
    border: 1px solid rgba(255, 241, 207, 0.72) !important;
    border-radius: 7px !important;
    background: transparent !important;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12) !important;
    transform: none !important;
    transition: border-color var(--transition-base), box-shadow var(--transition-base) !important;
}

.related-articles .article-card:hover::before {
    left: 8px !important;
    border-color: rgba(255, 241, 207, 0.86) !important;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.38),
        0 0 26px rgba(255, 241, 207, 0.16) !important;
}

.related-articles .article-card::after {
    display: none !important;
}

.related-articles .article-card__image {
    display: none !important;
}

.related-articles .article-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 46%, rgba(36, 27, 20, 0.28) 0%, rgba(36, 27, 20, 0.18) 34%, rgba(36, 27, 20, 0.04) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.16) 0%, rgba(16, 18, 15, 0.28) 42%, rgba(24, 18, 13, 0.68) 100%);
}

.related-articles .article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    filter: saturate(0.92) contrast(1.04) brightness(0.82);
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.related-articles .article-card:hover .article-card__image img {
    transform: scale(1.06);
}

.related-articles .article-card__content {
    position: relative;
    z-index: 3;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-items: center;
    min-height: 0;
    height: 100%;
    width: 100%;
    padding: clamp(1.35rem, 2vw, 1.8rem) !important;
    text-align: center;
}

.related-articles .article-card__title {
    align-self: center;
    max-width: 96%;
    margin: 0 auto var(--space-sm) !important;
    color: #fff1cf !important;
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 1.25vw, 1.32rem);
    font-weight: 700;
    line-height: 1.12;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.related-articles .article-card__title a {
    color: inherit !important;
}

.related-articles .article-card__text {
    align-self: end;
    max-width: 94%;
    margin: 0 auto var(--space-md) !important;
    color: rgba(255, 246, 222, 0.94) !important;
    font-size: clamp(0.78rem, 0.82vw, 0.9rem);
    font-weight: 500;
    line-height: 1.45 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.related-articles .article-card .btn {
    align-self: end;
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 241, 207, 0.82);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.14) !important;
    color: #fff1cf !important;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.related-articles .article-card .btn:hover {
    background: rgba(255, 241, 207, 0.24) !important;
    color: #fff6de !important;
}

@media (max-width: 767px) {
    .related-articles .article-card,
    .related-articles .article-card__content {
        min-height: 0;
    }
}

.article-cta {
    background: var(--vine-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.article-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-cta__title {
    font-family: var(--font-accent);
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.article-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    color: var(--pale-sage);
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ===== CONTACTS PAGE ===== */
.contacts-page-body .page-root {
    padding-top: 0;
}

.contacts-hero {
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.contacts-hero__image,
.contacts-hero__overlay {
    position: absolute;
    inset: 0;
}

.contacts-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.contacts-hero__overlay {
    background:
        linear-gradient(90deg, rgba(26, 31, 28, 0.9) 0%, rgba(26, 31, 28, 0.66) 54%, rgba(26, 31, 28, 0.34) 100%),
        linear-gradient(180deg, rgba(26, 31, 28, 0.16) 0%, rgba(26, 31, 28, 0.8) 100%);
}

.contacts-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.contacts-hero__content {
    max-width: min(1320px, calc(100vw - 64px));
    text-align: center;
}

.contacts-hero__title {
    max-width: none;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-accent);
    font-size: clamp(3rem, 5.45vw, 5.2rem);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    color: #f7ead0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.contacts-hero__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 253, 245, 0.9);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.contacts-page {
    background: var(--bg-white);
}

.contacts-page__intro {
    max-width: 920px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.contacts-page__title {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--vine-dark);
}

.contacts-page__text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--mineral-grey);
    line-height: 1.75;
}

.contacts-grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: start;
}

.contacts-grid--direct {
    grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    height: 100%;
}

.contacts-info__item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, rgba(252, 246, 235, 0.96) 0%, rgba(246, 235, 216, 0.88) 52%, rgba(238, 222, 198, 0.8) 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--bronze-frame);
    transition: all var(--transition-base);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 14px 30px rgba(98, 61, 47, 0.06);
    backdrop-filter: blur(14px);
}

.contacts-info__item:hover {
    border-color: var(--cold-sage);
    box-shadow: var(--shadow-md);
}

.contacts-info__item--stacked {
    display: flex;
    flex: 0 0 auto;
    text-align: center;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, rgba(252, 246, 235, 0.96) 0%, rgba(246, 235, 216, 0.88) 52%, rgba(238, 222, 198, 0.8) 100%);
    border-color: var(--bronze-frame);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 14px 30px rgba(98, 61, 47, 0.06);
    backdrop-filter: blur(14px);
}

.contacts-info__item--stacked .contacts-info__content {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-content: stretch;
    gap: 20px;
    width: 100%;
    flex: 1 1 auto;
}

.contacts-info__item--stacked .contacts-info__title,
.contacts-info__item--stacked .contacts-info__value,
.contacts-info__item--stacked .contacts-info__note,
.contacts-info__item--stacked .contacts-info__note--accent {
    text-align: center;
}

.contacts-info__item--stacked .contacts-info__note,
.contacts-info__item--stacked .contacts-info__note--accent {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.contacts-info__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    border-radius: 999px;
    color: var(--site-icon-color);
    box-shadow: var(--site-icon-shadow);
    backdrop-filter: blur(10px);
}

.contacts-info__title {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--mineral-grey);
}

.contacts-info__title--region-badge,
.district-tag--footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 28px);
    max-width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: #f7f1dd;
    text-align: center;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.34) 0%, transparent 26%),
        linear-gradient(145deg, rgba(164, 109, 63, 0.92) 0%, rgba(122, 62, 69, 0.94) 48%, rgba(191, 148, 67, 0.92) 100%);
    border: 1px solid rgba(255, 233, 181, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.42),
        0 14px 26px rgba(109, 67, 54, 0.18);
    backdrop-filter: blur(10px);
}

.contacts-info__title--region-badge {
    margin-bottom: 0;
}

.contacts-info__value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--vine-dark);
}

.contacts-info__note {
    font-size: var(--text-sm);
    color: var(--mineral-grey);
    margin-top: var(--space-xs);
}

.contacts-info__note--accent {
    margin-top: var(--space-md);
    color: var(--vine-dark);
}

.contacts-vacancies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: var(--space-md);
    justify-content: center;
}

.contacts-vacancies--regions {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: stretch;
    align-content: center;
    gap: 14px 14px;
    width: 100%;
    max-width: 640px;
    flex: 0 0 auto;
    min-height: 0;
    margin-top: 0;
}

.contacts-vacancies--regions .district-tag {
    position: relative;
    --float-y: 0px;
    animation: contactsTagFloat 6.6s ease-in-out infinite;
    will-change: transform;
    min-width: 0;
    width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 50px;
    white-space: normal;
    text-wrap: balance;
    margin: 0;
    line-height: 1.15;
    font-size: 0.95rem;
}

.contacts-vacancies--regions .district-tag:nth-child(1)  { grid-column: 1 / span 3; --float-y: 2px; }
.contacts-vacancies--regions .district-tag:nth-child(2)  { grid-column: 4 / span 3; --float-y: -1px; }
.contacts-vacancies--regions .district-tag:nth-child(3)  { grid-column: 1 / span 3; --float-y: 1px; }
.contacts-vacancies--regions .district-tag:nth-child(4)  { grid-column: 4 / span 3; --float-y: -2px; }
.contacts-vacancies--regions .district-tag:nth-child(5)  { grid-column: 1 / span 3; --float-y: 2px; }
.contacts-vacancies--regions .district-tag:nth-child(6)  { grid-column: 4 / span 3; --float-y: -1px; }
.contacts-vacancies--regions .district-tag:nth-child(7)  { grid-column: 1 / span 2; --float-y: 1px; }
.contacts-vacancies--regions .district-tag:nth-child(8)  { grid-column: 3 / span 2; --float-y: -2px; }
.contacts-vacancies--regions .district-tag:nth-child(9)  { grid-column: 5 / span 2; --float-y: 1px; }

.district-tag--footer {
    align-self: end;
    justify-self: center;
    --float-y: -1px;
    animation: contactsTagFloat 6.8s ease-in-out infinite;
}

@media (max-width: 720px) {
    .contacts-vacancies--regions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        max-width: none;
    }

    .contacts-vacancies--regions .district-tag {
        width: 100%;
        min-height: 52px;
        white-space: normal;
        text-wrap: balance;
    }

    .contacts-vacancies--regions .district-tag:nth-child(1),
    .district-tag--footer {
        grid-column: 1 / -1;
    }

    .contacts-vacancies--regions .district-tag:nth-child(2),
    .contacts-vacancies--regions .district-tag:nth-child(3),
    .contacts-vacancies--regions .district-tag:nth-child(4),
    .contacts-vacancies--regions .district-tag:nth-child(5),
    .contacts-vacancies--regions .district-tag:nth-child(6),
    .contacts-vacancies--regions .district-tag:nth-child(7),
    .contacts-vacancies--regions .district-tag:nth-child(8),
    .contacts-vacancies--regions .district-tag:nth-child(9) {
        grid-column: auto;
    }

    .district-tag--footer {
        width: 100%;
        min-height: 52px;
    }
}

@media (min-width: 768px) {
    .contacts-grid > * {
        height: auto;
    }

    .contacts-info {
        display: flex;
        flex-direction: column;
        align-content: normal;
    }
}

.contacts-vacancies--regions .district-tag:nth-child(2n) {
    animation-duration: 7.2s;
}

.contacts-vacancies--regions .district-tag:nth-child(3n) {
    animation-duration: 7.8s;
}

.contacts-vacancies--regions .district-tag:nth-child(1)  { animation-delay: -0.3s; }
.contacts-vacancies--regions .district-tag:nth-child(2)  { animation-delay: -1.2s; }
.contacts-vacancies--regions .district-tag:nth-child(3)  { animation-delay: -2.1s; }
.contacts-vacancies--regions .district-tag:nth-child(4)  { animation-delay: -3s; }
.contacts-vacancies--regions .district-tag:nth-child(5)  { animation-delay: -3.8s; }
.contacts-vacancies--regions .district-tag:nth-child(6)  { animation-delay: -4.4s; }
.contacts-vacancies--regions .district-tag:nth-child(7)  { animation-delay: -5.1s; }
.contacts-vacancies--regions .district-tag:nth-child(8)  { animation-delay: -5.9s; }
.contacts-vacancies--regions .district-tag:nth-child(9)  { animation-delay: -6.6s; }
.contacts-vacancies--regions .district-tag:nth-child(10) { animation-delay: -7.1s; }

@keyframes contactsTagFloat {
    0%, 100% {
        transform: translateY(var(--float-y));
    }
    25% {
        transform: translateY(calc(var(--float-y) - 3px));
    }
    50% {
        transform: translateY(calc(var(--float-y) - 6px));
    }
    75% {
        transform: translateY(calc(var(--float-y) - 2px));
    }
}

.contacts-info__item--stacked .district-tag:not(.district-tag--footer) {
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.22) 20%, transparent 42%),
        linear-gradient(145deg, rgba(255, 249, 238, 0.92) 0%, rgba(247, 235, 216, 0.84) 52%, rgba(235, 213, 176, 0.72) 100%);
    border: 1px solid rgba(184, 131, 92, 0.32);
    color: var(--vine-dark);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -10px 18px rgba(197, 160, 89, 0.1),
        0 12px 22px rgba(98, 61, 47, 0.08);
    backdrop-filter: blur(12px);
}

.contacts-info__item--stacked .district-tag--footer {
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.34) 0%, transparent 26%),
        linear-gradient(145deg, rgba(164, 109, 63, 0.92) 0%, rgba(122, 62, 69, 0.94) 48%, rgba(191, 148, 67, 0.92) 100%);
    border: 1px solid rgba(255, 233, 181, 0.36);
    color: #f7f1dd;
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.42),
        0 14px 26px rgba(109, 67, 54, 0.18);
}

.contacts-form,
.contacts-direct {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, rgba(252, 246, 235, 0.96) 0%, rgba(246, 235, 216, 0.88) 52%, rgba(238, 222, 198, 0.8) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--bronze-frame);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 14px 30px rgba(98, 61, 47, 0.06);
    backdrop-filter: blur(14px);
    height: auto;
    align-self: start;
}

.contacts-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contacts-direct__label {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(255, 233, 181, 0.36);
    border-radius: 999px;
    color: #f7f1dd;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.34) 0%, transparent 26%),
        linear-gradient(145deg, rgba(164, 109, 63, 0.92) 0%, rgba(122, 62, 69, 0.94) 48%, rgba(191, 148, 67, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.42),
        0 14px 26px rgba(109, 67, 54, 0.16);
}

.contacts-form__title,
.contacts-direct__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: var(--vine-dark);
    text-align: center;
}

.contacts-direct__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contacts-direct__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    min-height: 0;
    padding: 0 1.4rem;
    overflow: hidden;
    border: 2px solid rgba(255, 233, 181, 0.36);
    border-radius: var(--radius-md);
    color: #f7f1dd;
    text-decoration: none;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 246, 218, 0.34) 0%, transparent 28%),
        radial-gradient(circle at 78% 80%, rgba(255, 216, 137, 0.16) 0%, transparent 34%),
        linear-gradient(145deg, rgba(164, 109, 63, 0.94) 0%, rgba(122, 62, 69, 0.92) 48%, rgba(191, 148, 67, 0.94) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.42),
        0 12px 24px rgba(109, 67, 54, 0.16);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contacts-direct__link--phone {
    border-color: rgba(255, 238, 204, 0.52);
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 246, 218, 0.42) 0%, transparent 30%),
        radial-gradient(circle at 78% 80%, rgba(255, 216, 137, 0.2) 0%, transparent 34%),
        linear-gradient(145deg, rgba(190, 132, 78, 0.96) 0%, rgba(139, 78, 70, 0.94) 48%, rgba(207, 162, 76, 0.96) 100%);
}

.contacts-direct__link:hover,
.contacts-direct__link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 238, 204, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 221, 0.5),
        0 16px 30px rgba(109, 67, 54, 0.22);
}

.contacts-direct__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 58%);
    opacity: 0.7;
    pointer-events: none;
}

.contacts-direct__logo {
    position: relative;
    z-index: 1;
    display: block;
    width: min(74%, 560px);
    max-height: 54px;
    object-fit: contain;
    filter:
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.14))
        drop-shadow(0 8px 12px rgba(40, 28, 22, 0.16));
}

.contacts-direct__link--telegram .contacts-direct__logo {
    max-height: 62px;
}

.contacts-form__subtitle {
    font-size: var(--text-base);
    color: var(--mineral-grey);
    margin-bottom: var(--space-xl);
    line-height: 1.75;
    text-align: center;
}

/* Region Info */
.contacts-region {
    background: var(--bg-gradient-warm);
    text-align: center;
}

.contacts-region__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--vine-dark);
}

.contacts-region__districts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 0;
}

.district-tag {
    font-size: var(--text-sm);
    padding: 10px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    color: var(--vine-dark);
    font-weight: 500;
    border: 1px solid var(--pale-sage);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.district-tag:hover {
    border-color: var(--cold-sage);
    background: var(--pale-sage);
}

@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .contacts-grid.contacts-grid--direct {
        grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
    }
}

@media (max-width: 1024px) {
    .contacts-hero__title {
        font-size: clamp(2.75rem, 5.2vw, 3.35rem);
    }
}

@media (max-width: 767px) {
    .contacts-hero {
        min-height: 320px;
    }

    .contacts-hero__container {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .contacts-hero__title {
        font-size: 3.2rem;
        white-space: normal;
    }

    .contacts-hero__text {
        font-size: var(--text-lg);
        line-height: 1.65;
    }

    .contacts-direct__link {
        height: 72px;
        padding: 0 1rem;
    }

    .contacts-direct__logo {
        width: min(86%, 430px);
        max-height: 45px;
    }
}

/* Contacts redesign from Figma comment */
.contacts-page.contacts-page--redesign {
    --contacts-cream: #f7efe2;
    --contacts-cream-light: #fff8ec;
    --contacts-green: #173b2f;
    --contacts-green-soft: #2e5746;
    --contacts-text: #5f584f;
    --contacts-muted: #81756a;
    --contacts-copper: #b87955;
    --contacts-gold: #c99b4a;
    --contacts-border: rgba(184, 121, 85, 0.42);
    --contacts-shadow: rgba(73, 48, 28, 0.14);
    position: relative;
    min-height: 100vh;
    padding: 46px 0 42px;
    overflow: hidden;
    background: var(--bg-main);
    color: var(--contacts-green);
}

.contacts-page.contacts-page--redesign::before {
    content: none;
}

.contacts-page.contacts-page--redesign::after {
    content: none;
}

.contacts-page--redesign .contacts-bg {
    display: none;
}

.contacts-page--redesign .contacts-bg::before,
.contacts-page--redesign .contacts-bg::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(46, 87, 70, 0.34);
    border-color: rgba(46, 87, 70, 0.34) transparent transparent rgba(46, 87, 70, 0.34);
    border-radius: 58% 42% 62% 38%;
    transform: rotate(-28deg);
}

.contacts-page--redesign .contacts-bg::before {
    inset: 42px 76px 96px 40px;
}

.contacts-page--redesign .contacts-bg::after {
    inset: 122px 34px 46px 116px;
    border-color: transparent rgba(46, 87, 70, 0.28) rgba(46, 87, 70, 0.28) transparent;
    transform: rotate(22deg);
}

.contacts-page--redesign .contacts-bg-left {
    left: -80px;
    transform: rotate(-12deg);
}

.contacts-page--redesign .contacts-bg-right {
    right: -80px;
    top: 20px;
    bottom: auto;
    transform: rotate(18deg);
    opacity: 0.18;
}

.contacts-page--redesign .contacts-container {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.contacts-page--redesign .contacts-head {
    max-width: 1160px;
    margin: 0 auto 22px;
    text-align: center;
}

.contacts-page--redesign .contacts-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    color: #9b7440;
}

.contacts-page--redesign .contacts-label span {
    width: 68px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 116, 64, 0.65));
}

.contacts-page--redesign .contacts-label span:last-child {
    background: linear-gradient(90deg, rgba(155, 116, 64, 0.65), transparent);
}

.contacts-page--redesign .contacts-label p {
    margin: 0;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
}

.contacts-page--redesign .contacts-head h2 {
    margin: 0;
    color: var(--contacts-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.45vw, 88px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.contacts-page--redesign .contacts-subtitle {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--contacts-text);
    font-size: 20px;
    line-height: 1.48;
    font-weight: 500;
}

.contacts-page--redesign .contacts-grid.contacts-grid--direct {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
    gap: 16px;
    align-items: stretch;
}

.contacts-page--redesign .contacts-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 32px;
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0) 40%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 235, 212, 0.95) 54%, rgba(232, 207, 166, 0.88) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -24px 50px rgba(197, 160, 89, 0.08),
        0 14px 30px rgba(98, 61, 47, 0.08);
    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

.contacts-page--redesign .contacts-card:hover {
    border-color: var(--bronze-frame-strong);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.28) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(145deg, rgba(255, 252, 244, 1) 0%, rgba(249, 238, 218, 0.98) 54%, rgba(236, 211, 170, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        inset 0 -24px 50px rgba(197, 160, 89, 0.1),
        0 18px 38px rgba(127, 73, 83, 0.11);
}

.contacts-page--redesign .contacts-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 90%, rgba(21, 59, 47, 0.055), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
    pointer-events: none;
}

.contacts-page--redesign .contacts-card > * {
    position: relative;
    z-index: 1;
}

.contacts-page--redesign .card-map-line {
    position: absolute;
    z-index: 0;
    top: 38px;
    right: 34px;
    width: 250px;
    height: 230px;
    opacity: 0.18;
    background: url("../images/krasnodar-map.png") center / contain no-repeat;
    filter: grayscale(1) contrast(1.4) brightness(0.55);
    pointer-events: none;
}

.contacts-page--redesign .card-head {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 30px;
}

.contacts-page--redesign .card-head-small {
    margin-bottom: 26px;
}

.contacts-page--redesign .card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff8e7;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.contacts-page--redesign .card-icon svg {
    width: 29px;
    height: 29px;
}

.contacts-page--redesign .card-head h3 {
    margin: 0;
    color: var(--contacts-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contacts-page--redesign .card-head p {
    margin: 14px 0 0;
    color: var(--contacts-text);
    font-size: 16px;
    line-height: 1.52;
    font-weight: 500;
}

.contacts-page--redesign .regions-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 52px;
}

.contacts-page--redesign .regions-list span {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(184, 131, 92, 0.72);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.18) 0%, rgba(197, 160, 89, 0) 40%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 235, 212, 0.94) 54%, rgba(232, 207, 166, 0.8) 100%);
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 10px 20px rgba(98, 61, 47, 0.06);
}

.contacts-page--redesign .regions-list span::before {
    content: "";
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s6-5.5 6-11a6 6 0 1 0-12 0c0 5.5 6 11 6 11Z' stroke='%23b77b35' stroke-width='2'/%3E%3Ccircle cx='12' cy='10' r='2' stroke='%23b77b35' stroke-width='2'/%3E%3C/svg%3E")
        center / 15px 15px no-repeat,
        rgba(255, 255, 255, 0.86);
    box-shadow: 0 5px 12px rgba(146, 101, 49, 0.14);
}

.contacts-page--redesign .region-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px auto 14px;
    color: var(--contacts-gold);
}

.contacts-page--redesign .region-note span {
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 155, 74, 0.56));
}

.contacts-page--redesign .region-note span:last-child {
    background: linear-gradient(90deg, rgba(201, 155, 74, 0.56), transparent);
}

.contacts-page--redesign .region-note i {
    font-style: normal;
    font-size: 18px;
}

.contacts-page--redesign .other-regions {
    margin: 0;
    color: var(--contacts-muted);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.contacts-page--redesign .contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contacts-page--redesign .contact-action {
    min-height: 78px;
    display: grid;
    grid-template-columns: 56px 1fr 36px;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 2px solid var(--bronze-frame);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.2) 0%, rgba(197, 160, 89, 0) 40%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 235, 212, 0.95) 54%, rgba(232, 207, 166, 0.86) 100%);
    color: var(--accent-vine);
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -18px 36px rgba(197, 160, 89, 0.07),
        0 12px 24px rgba(98, 61, 47, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contacts-page--redesign .contact-action-main {
    border-color: var(--bronze-frame);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.24) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.99) 0%, rgba(247, 235, 212, 0.96) 54%, rgba(232, 207, 166, 0.9) 100%);
    color: var(--accent-vine);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -18px 36px rgba(197, 160, 89, 0.1),
        0 14px 28px rgba(98, 61, 47, 0.08);
}

.contacts-page--redesign .contact-action:hover,
.contacts-page--redesign .contact-action:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(184, 121, 85, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        inset 0 -18px 36px rgba(197, 160, 89, 0.1),
        0 16px 30px rgba(127, 73, 83, 0.11);
}

.contacts-page--redesign .action-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    overflow: hidden;
}

.contacts-page--redesign .action-icon svg {
    width: 28px;
    height: 28px;
}

.contacts-page--redesign .action-icon-social {
    position: relative;
    color: #ffffff;
    border-radius: 18px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 72% 26%, rgba(255, 56, 230, 0.78) 0%, rgba(255, 56, 230, 0) 42%),
        radial-gradient(circle at 18% 84%, rgba(28, 205, 242, 0.95) 0%, rgba(28, 205, 242, 0) 44%),
        linear-gradient(135deg, #168df4 0%, #5557ff 45%, #b632ff 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -10px 18px rgba(42, 19, 141, 0.2),
        0 8px 18px rgba(88, 80, 255, 0.24);
}

.contacts-page--redesign .action-icon-image {
    position: relative;
    border-radius: 16px;
    background: transparent;
    box-shadow:
        0 8px 18px rgba(88, 80, 255, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.42);
}

.contacts-page--redesign .action-icon-image-phone {
    border-radius: 50%;
    background: #55cf5a;
}

.contacts-page--redesign .action-icon-image-telegram {
    border-radius: 50%;
    background: #29a8df;
}

.contacts-page--redesign .action-icon-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: inherit;
    object-fit: contain;
}

.contacts-page--redesign .action-icon-phone::after {
    content: "";
    position: absolute;
    left: 6px;
    bottom: 3px;
    width: 14px;
    height: 12px;
    border-radius: 0 0 0 12px;
    background: linear-gradient(135deg, #24c7ed, #2aa8f4);
    transform: rotate(-18deg);
    opacity: 0.96;
}

.contacts-page--redesign .action-icon-social svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 4px 8px rgba(48, 26, 128, 0.22));
}

.contacts-page--redesign .action-icon-email svg {
    width: 38px;
    height: 38px;
}

.contacts-page--redesign .action-icon:not(.action-icon-image) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contacts-page--redesign .action-icon-soft {
    color: #fffdf5;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.34) 0%, transparent 26%),
        linear-gradient(135deg, #c5a059 0%, #a67c00 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 4px 15px rgba(166, 124, 0, 0.24);
}

.contacts-page--redesign .contact-action:not(.contact-action-main) .action-icon-soft {
    color: #fffdf5;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.34) 0%, transparent 26%),
        linear-gradient(135deg, #c5a059 0%, #a67c00 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.contacts-page--redesign .action-text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.contacts-page--redesign .action-text strong {
    color: currentColor;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
}

.contacts-page--redesign .action-text small {
    color: currentColor;
    opacity: 0.82;
    font-size: 15px;
    line-height: 1.15;
}

.contacts-page--redesign .action-arrow {
    justify-self: end;
    font-size: 34px;
    line-height: 1;
    color: currentColor;
    opacity: 0.78;
}

.contacts-page--redesign .contacts-helper {
    display: grid;
    grid-template-columns: minmax(250px, 1.25fr) repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: center;
    margin-top: 20px;
    padding: 24px 30px;
    border-radius: var(--radius-md);
    border: 2px solid var(--bronze-frame);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0) 40%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 235, 212, 0.95) 54%, rgba(232, 207, 166, 0.88) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -24px 50px rgba(197, 160, 89, 0.08),
        0 14px 30px rgba(98, 61, 47, 0.08);
    backdrop-filter: blur(8px);
}

.contacts-page--redesign .helper-main,
.contacts-page--redesign .helper-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacts-page--redesign .helper-main {
    padding-right: 24px;
}

.contacts-page--redesign .helper-main strong {
    color: var(--contacts-green);
    font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
}

.contacts-page--redesign .helper-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff8e7;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.contacts-page--redesign .helper-icon svg {
    width: 28px;
    height: 28px;
}

.contacts-page--redesign .helper-item {
    min-height: 64px;
    justify-content: center;
    padding: 0 18px;
    border-left: 1px solid rgba(184, 131, 92, 0.5);
}

.contacts-page--redesign .helper-item span {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #b07a35;
    background: rgba(255, 248, 235, 0.76);
}

.contacts-page--redesign .helper-item svg {
    width: 25px;
    height: 25px;
}

.contacts-page--redesign .helper-item p {
    margin: 0;
    color: var(--contacts-text);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

.contacts-page--redesign .contacts-footer-note {
    margin-top: 22px;
    text-align: center;
    color: #3c5a4a;
}

.contacts-page--redesign .contacts-footer-note p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 20px;
    opacity: 0.86;
}

.contacts-page--redesign .contacts-footer-note span {
    display: inline-block;
    margin-top: 9px;
    color: var(--contacts-gold);
    font-size: 18px;
}

@media (max-width: 1100px) {
    .contacts-page--redesign .contacts-container {
        width: min(100% - 56px, 1320px);
    }

    .contacts-page--redesign .contacts-head h2 {
        font-size: clamp(46px, 5.7vw, 64px);
    }

    .contacts-page--redesign .contacts-card {
        min-height: 500px;
        padding: 26px;
    }

    .contacts-page--redesign .card-head {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }

    .contacts-page--redesign .card-icon {
        width: 48px;
        height: 48px;
    }

    .contacts-page--redesign .card-head h3 {
        font-size: 26px;
    }

    .contacts-page--redesign .card-head p {
        font-size: 15px;
    }

    .contacts-page--redesign .card-map-line {
        display: none;
    }

    .contacts-page--redesign .regions-list {
        gap: 10px;
        margin-top: 36px;
    }

    .contacts-page--redesign .regions-list span {
        min-height: 56px;
        padding: 11px 12px;
        font-size: 11px;
    }

    .contacts-page--redesign .contact-action {
        min-height: 72px;
        grid-template-columns: 50px minmax(0, 1fr) 28px;
        gap: 14px;
        padding: 12px 14px;
    }

    .contacts-page--redesign .action-icon {
        width: 48px;
        height: 48px;
    }

    .contacts-page--redesign .action-text strong {
        font-size: 21px;
    }

    .contacts-page--redesign .action-text small {
        font-size: 13px;
    }

    .contacts-page--redesign .contacts-helper {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .contacts-page--redesign .helper-main {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .contacts-page--redesign .helper-item {
        border-left: 0;
        justify-content: flex-start;
        padding: 0;
    }
}

@media (max-width: 820px) {
    .contacts-page--redesign .contacts-grid.contacts-grid--direct {
        grid-template-columns: 1fr;
    }

    .contacts-page--redesign .contacts-card {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .contacts-page.contacts-page--redesign {
        padding: 36px 0 44px;
    }

    .contacts-page--redesign .contacts-container {
        width: min(100% - 28px, 1180px);
    }

    .contacts-page--redesign .contacts-head {
        margin-bottom: 26px;
    }

    .contacts-page--redesign .contacts-label span {
        width: 38px;
    }

    .contacts-page--redesign .contacts-label p {
        letter-spacing: 0.2em;
    }

    .contacts-page--redesign .contacts-subtitle {
        font-size: 16px;
    }

    .contacts-page--redesign .contacts-card {
        padding: 22px;
        border-radius: 18px;
    }

    .contacts-page--redesign .card-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contacts-page--redesign .card-head h3 {
        font-size: 25px;
    }

    .contacts-page--redesign .card-map-line {
        display: none;
    }

    .contacts-page--redesign .regions-list {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .contacts-page--redesign .contact-action {
        grid-template-columns: 48px minmax(0, 1fr) 24px;
        min-height: 70px;
        gap: 12px;
        padding: 12px;
    }

    .contacts-page--redesign .action-icon {
        width: 46px;
        height: 46px;
    }

    .contacts-page--redesign .action-text strong {
        font-size: 19px;
    }

    .contacts-page--redesign .action-text small {
        font-size: 13px;
    }

    .contacts-page--redesign .contacts-helper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contacts-page--redesign .helper-item {
        min-height: auto;
    }
}

/* ===== GEOGRAPHY SECTION ===== */
.geography {
    background: transparent;
}

.geography__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .geography__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.geography__content {
    max-width: 540px;
    position: relative;
    padding-left: var(--space-2xl); /* Освобождаем место для вертикальной линии */
    border-left: 1px solid rgba(197, 160, 89, 0.4); /* Одинарная благородная золотая нить */
}

.geography__list {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.geography__list li {
    font-size: 1.15rem; /* Значительно крупнее и статуснее */
    color: var(--text-dark);
    position: relative;
    padding-left: var(--space-xl);
    line-height: 1.7;
}

.geography__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    transform: rotate(45deg); /* Золотой ромб вместо точки — это люкс */
}

.geography__list strong {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: inline-block;
    margin-right: 0.3rem;
    letter-spacing: 0.02em;
}

.geography__footer {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    margin-top: var(--space-lg);
}

.geography__footer p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

.geography__map {
    width: 100%;
}

.geography__map-shell {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    border: 3px solid #c5a059;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(160deg, rgba(213, 226, 240, 0.82) 0%, rgba(191, 207, 223, 0.9) 35%, rgba(231, 223, 208, 0.78) 100%);
    box-shadow: 0 24px 60px rgba(28, 51, 74, 0.18);
    isolation: isolate;
}

.geography__map-shell::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: calc(var(--radius-lg) - 2px);
    border: 1px solid rgba(255, 247, 230, 0.38);
    pointer-events: none;
    z-index: 2;
}

.geography__leaflet-map {
    width: 100%;
    height: 700px;
    z-index: 1;
}

.geography__leaflet-map .leaflet-control-attribution,
.geography__leaflet-map .leaflet-control-zoom {
    border: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: 0 10px 20px rgba(24, 46, 68, 0.12);
}

.geography__leaflet-map .leaflet-control-zoom a {
    color: var(--graphite);
}

.geography__leaflet-map .leaflet-popup-content-wrapper {
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(145deg, rgba(242, 236, 227, 0.96) 0%, rgba(224, 219, 210, 0.96) 100%);
    border: 1px solid rgba(197, 160, 89, 0.38);
    box-shadow: 0 20px 36px rgba(24, 46, 68, 0.18);
}

.geography__leaflet-map .leaflet-popup-tip {
    background: rgba(236, 229, 218, 0.98);
}

.geography__popup-title {
    display: block;
    margin-bottom: 6px;
    color: var(--graphite);
    font-weight: 700;
    font-size: 1rem;
}

.geography__popup-text {
    color: rgba(53, 68, 83, 0.86);
    font-size: 0.84rem;
    line-height: 1.45;
}

.geography__marker {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 248, 232, 0.92);
    background: radial-gradient(circle at 35% 35%, #fff6df 0%, #d6b16d 45%, #8f6333 100%);
    box-shadow:
        0 0 0 8px rgba(201, 160, 89, 0.14),
        0 12px 22px rgba(34, 57, 79, 0.26);
}

.geography__marker--base {
    background: radial-gradient(circle at 35% 35%, #f0f7ff 0%, #88a8c7 48%, #365778 100%);
    box-shadow:
        0 0 0 8px rgba(84, 125, 165, 0.16),
        0 12px 22px rgba(34, 57, 79, 0.26);
}

.geography__marker--city {
    width: 16px;
    height: 16px;
    border-width: 2px;
    background: radial-gradient(circle at 35% 35%, #fff7ef 0%, #d8b6d1 42%, #8b6b8b 100%);
    box-shadow:
        0 0 0 6px rgba(180, 148, 190, 0.14),
        0 10px 18px rgba(34, 57, 79, 0.2);
}

.geography__map-overlay {
    position: absolute;
    left: 24px;
    z-index: 3;
    pointer-events: none;
}

.geography__map-overlay--top {
    top: 24px;
}

.geography__map-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    color: rgba(255, 247, 231, 0.96);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(149, 88, 62, 0.94) 0%, rgba(125, 73, 83, 0.92) 46%, rgba(200, 151, 72, 0.92) 100%);
    border: 1px solid rgba(255, 238, 204, 0.28);
    box-shadow: 0 16px 34px rgba(58, 35, 21, 0.24);
}

.geography__legend {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 31, 48, 0.42);
    border: 1px solid rgba(245, 235, 215, 0.18);
    backdrop-filter: blur(12px);
}

.geography__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 237, 223, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.geography__legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.geography__legend-swatch--zone {
    background: radial-gradient(circle at 35% 35%, #fff6df 0%, #d6b16d 52%, #8f6333 100%);
}

.geography__legend-swatch--city {
    background: radial-gradient(circle at 35% 35%, #fff7ef 0%, #d8b6d1 42%, #8b6b8b 100%);
}

.geography__legend-swatch--base {
    background: radial-gradient(circle at 35% 35%, #e6f0fb 0%, #7fa1c6 58%, #365778 100%);
}

.geography__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--cold-sage);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(107, 144, 128, 0.12) 0%, rgba(164, 195, 178, 0.12) 100%);
    border-radius: var(--radius-full);
}

@media (min-width: 992px) {
    .geography__content {
        position: relative; /* Ensure the label boundary is this container */
        padding-left: 200px; /* Space for the absolute label */
    }
    .geography__label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0;
    }
}

.geography__title {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: 300;
    margin-bottom: var(--space-md);
    color: var(--graphite);
    line-height: 1.1;
}

@media (max-width: 1279px) {
    .geography__map-shell {
        min-height: 640px;
    }

    .geography__leaflet-map {
        height: 640px;
    }
}

@media (max-width: 1023px) {
    .geography__content {
        max-width: none;
        padding-left: 0;
        border-left: none;
    }

    .geography__map-shell {
        min-height: auto;
    }

    .geography__leaflet-map {
        height: 560px;
    }

    .geography__legend {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 767px) {
    .geography__map-shell {
        border-width: 2px;
    }

    .geography__leaflet-map {
        height: 420px;
    }

    .geography__legend {
        right: 14px;
        bottom: 14px;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .geography__legend-item {
        font-size: 0.72rem;
    }

    .geography__map-overlay {
        left: 14px;
    }

    .geography__map-overlay--top {
        top: 14px;
    }

    .geography__map-pill {
        padding: 10px 14px;
        font-size: 0.72rem;
    }
}

/* Full embedded map project */
.geography__app-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 860px;
    border: 3px solid #c5a059;
    border-radius: calc(var(--radius-lg) + 4px);
    background:
        radial-gradient(circle at top left, rgba(255, 252, 244, 0.42) 0%, rgba(255, 252, 244, 0) 34%),
        linear-gradient(160deg, rgba(213, 226, 240, 0.82) 0%, rgba(191, 207, 223, 0.9) 35%, rgba(231, 223, 208, 0.78) 100%);
    box-shadow: 0 24px 60px rgba(28, 51, 74, 0.18);
}

.geography__app-frame {
    display: block;
    width: 100%;
    height: 860px;
    border: 0;
    background: #f5f1e7;
    border-radius: calc(var(--radius-lg) + 1px);
}

@media (max-width: 1279px) {
    .geography__app-shell {
        min-height: 780px;
    }

    .geography__app-frame {
        height: 780px;
    }
}

@media (max-width: 1023px) {
    .geography__app-shell {
        min-height: 700px;
    }

    .geography__app-frame {
        height: 700px;
    }
}

@media (max-width: 767px) {
    .geography__app-shell {
        min-height: 620px;
        border-width: 2px;
    }

    .geography__app-frame {
        height: 620px;
    }
}

/* Cleanup: removed orphaned step-card styles */

/* ==========================================================================
   RELEASE UNIFICATION LAYER
   Applies the main-page bronze/cream system to every reusable block.
   ========================================================================== */

:where(
    .why-us__card,
    .for-whom__card,
    .service-card,
    .case-card,
    .case-full,
    .case-flip-card__back,
    .sidebar-block,
    .article-card,
    .blog-start-card,
    .blog-lead,
    .blog-editor-note,
    .faq__item,
    .contacts-info__item,
    .contacts-form,
    .process-flow__item,
    .process-flow__card,
    .process-cta__inner,
    .about-fact,
    .competency,
    .client-type,
    .approach-item,
    .about-region,
    .article-content__body .article-cta
) {
    background: var(--card-unified-bg);
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-unified-shadow);
    color: var(--text-main);
    text-align: center;
}

:where(
    .why-us__card,
    .for-whom__card,
    .service-card,
    .case-card,
    .case-full,
    .case-flip-card__back,
    .sidebar-block,
    .article-card,
    .blog-start-card,
    .faq__item,
    .contacts-info__item,
    .contacts-form,
    .process-flow__item,
    .process-flow__card,
    .about-fact,
    .competency,
    .client-type,
    .approach-item,
    .about-region
):hover {
    background: var(--card-unified-bg-hover);
    border-color: var(--bronze-frame-strong);
    box-shadow: var(--card-unified-shadow-hover);
}

:where(
    .why-us__card,
    .for-whom__card,
    .service-card,
    .case-card,
    .case-full,
    .sidebar-block,
    .article-card,
    .blog-start-card,
    .faq__item,
    .contacts-info__item,
    .contacts-form,
    .process-flow__item,
    .process-flow__card,
    .about-fact,
    .competency,
    .client-type,
    .approach-item,
    .about-region
) :where(p, li, span:not(.btn):not(.section__label):not(.blog-badge), a:not(.btn), label) {
    text-align: center;
}

:where(
    .section__title,
    .faq__main-title,
    .service-card__title,
    .case-card__title,
    .article-card__title,
    .sidebar-block__title,
    .contacts-form__title,
    .contacts-info__title,
    .process-step__title,
    .process-flow__item h3,
    .process-flow__card h3,
    .about-section-title,
    .competency__title,
    .approach-item__title,
    .client-type__name,
    .blog-main__head h2,
    .blog-start__head h2
) {
    color: var(--accent-vine);
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

:where(
    .for-whom__image-wrapper,
    .service-card__image-wrapper,
    .case-card__image,
    .case-full__image,
    .article-card__image,
    .article-content__image,
    .blog-start-card__visual,
    .faq__image-wrapper,
    .about-story__media,
    .about-geo__map,
    .process-flow__media
) {
    border-color: var(--bronze-frame);
    box-shadow:
        0 0 0 6px rgba(184, 131, 92, 0.12),
        0 12px 26px rgba(98, 61, 47, 0.08);
}

:where(
    .for-whom__image-wrapper,
    .service-card__image-wrapper,
    .case-card__image,
    .case-full__image,
    .article-card__image,
    .article-content__image,
    .blog-start-card__visual,
    .faq__image-wrapper,
    .about-story__media,
    .about-geo__map,
    .process-flow__media
)::before {
    background: var(--image-frame-bg);
}

.services-page .service-card {
    border: 2px solid var(--bronze-frame) !important;
    box-shadow: var(--card-unified-shadow);
}

.services-page .service-card__front,
.services-page .service-card__back,
.case-flip-card__front,
.case-flip-card__back {
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
}

.services-page .service-card__back,
.case-flip-card__back {
    background: var(--card-unified-bg);
}

.contacts-page,
.article-page,
.related-articles,
.blog-page,
.articles-page,
.process-page,
.process-flow,
.process-cta,
.about-page,
.cases-page,
.services-page {
    background: var(--bg-main);
}

.process-flow__item,
.process-flow__card {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0) 40%),
        linear-gradient(145deg, rgba(255, 250, 239, 0.98) 0%, rgba(247, 235, 212, 0.95) 54%, rgba(232, 207, 166, 0.88) 100%);
    border-color: var(--bronze-frame);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -24px 50px rgba(197, 160, 89, 0.08),
        0 14px 30px rgba(98, 61, 47, 0.08);
}

.process-flow__item:hover,
.process-flow__card:hover {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 86% 88%, rgba(197, 160, 89, 0.28) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(145deg, rgba(255, 252, 244, 1) 0%, rgba(249, 238, 218, 0.98) 54%, rgba(236, 211, 170, 0.92) 100%);
}

@media (max-width: 767px) {
    :where(
        .why-us__card,
        .for-whom__card,
        .service-card,
        .case-card,
        .sidebar-block,
        .article-card,
        .faq__item,
        .contacts-info__item,
        .contacts-form,
        .process-flow__item,
        .process-flow__card,
        .about-fact,
        .competency,
        .client-type,
        .approach-item
    ) {
        border-width: 1.5px;
    }
}

/* ==========================================================================
   ABOUT PAGE FINAL UNIFICATION
   Keeps the company page in the same bronze/cream card system as the rest.
   ========================================================================== */

.about-page-body,
.about-page-body .page-root,
.about-page,
.about-content,
.about-story,
.about-geo,
.about-competencies,
.about-clients,
.about-approach {
    background: var(--bg-main);
}

.about-page {
    padding-top: clamp(2rem, 3.2vw, 3rem);
    padding-bottom: clamp(3rem, 5vw, var(--space-4xl));
}

.about-content {
    display: grid;
    gap: clamp(3rem, 5vw, var(--space-4xl));
}

.about-story,
.about-geo,
.about-competencies,
.about-clients,
.about-approach {
    margin: 0;
}

.about-story {
    align-items: stretch;
}

.about-story__content {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about-story__content p,
.about-section-head,
.about-section-head p {
    text-align: center;
}

.about-section-head {
    max-width: 980px;
    margin: 0 auto var(--space-2xl);
}

.about-section-title,
.about-geo .about-section-title {
    color: var(--accent-vine);
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.035em;
    text-align: center;
    white-space: normal;
}

.about-geo {
    width: auto;
    margin: 0;
    padding: 0;
    color: var(--text-main);
}

.about-geo > * {
    max-width: none;
}

.about-geo .about-section-title,
.about-geo .about-section-head p {
    color: var(--accent-vine);
}

.about-geo__layout,
.about-competencies__grid,
.about-clients__grid,
.about-approach__list,
.about-facts {
    align-items: stretch;
}

.about-fact,
.competency,
.client-type,
.approach-item,
.about-region {
    min-height: 100%;
    background: var(--card-unified-bg);
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-unified-shadow);
    text-align: center;
}

.about-fact:hover,
.competency:hover,
.client-type:hover,
.approach-item:hover,
.about-region:hover {
    background: var(--card-unified-bg-hover);
    border-color: var(--bronze-frame-strong);
    box-shadow: var(--card-unified-shadow-hover);
    transform: translateY(-2px);
}

.about-fact,
.approach-item {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
}

.competency,
.client-type,
.about-region {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.competency {
    min-height: 260px;
}

.client-type {
    min-height: 112px;
}

.about-region {
    min-height: 160px;
}

.approach-item {
    min-height: 220px;
}

.about-story__media,
.about-geo__map {
    background: transparent;
    border: 3px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 0 6px rgba(184, 131, 92, 0.12),
        0 18px 34px rgba(98, 61, 47, 0.12);
}

.about-story__media::before,
.about-geo__map::before {
    background: var(--image-frame-bg);
    border-radius: var(--radius-lg);
}

.about-story__media img,
.about-geo__map img {
    border-radius: calc(var(--radius-lg) - 10px);
}

.about-fact__value,
.competency__number,
.approach-item__number {
    background: var(--site-icon-bg);
    border-radius: 999px;
    box-shadow: var(--site-icon-shadow);
}

.about-region__status {
    margin-inline: auto;
}

.about-region__status--active,
.about-region__status--future {
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.28) 0%, transparent 26%),
        linear-gradient(145deg, rgba(164, 109, 63, 0.88) 0%, rgba(122, 62, 69, 0.82) 48%, rgba(191, 148, 67, 0.88) 100%);
    color: var(--button-premium-text);
}

.about-region__name,
.about-region__note,
.about-fact__text,
.competency__text,
.approach-item__text {
    color: var(--text-main);
}

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .about-geo__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .about-geo__regions {
        order: 2;
    }

    .about-geo__map {
        order: 1;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .about-content {
        gap: var(--space-3xl);
    }

    .competency,
    .client-type,
    .about-region,
    .approach-item {
        min-height: 0;
    }
}

/* ==========================================================================
   ABOUT PAGE EDITORIAL REDESIGN
   A shorter trust-focused company page without duplicated service lists.
   ========================================================================== */

.about-editorial {
    gap: clamp(1.6rem, 2.4vw, 2.25rem);
}

.about-manifest,
.about-region-card,
.about-belief {
    background: var(--card-unified-bg);
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-unified-shadow);
}

.about-manifest,
.about-region-card {
    display: grid;
    gap: clamp(1.8rem, 3vw, 3rem);
    align-items: stretch;
    padding: clamp(1rem, 1.4vw, 1.4rem);
}

.about-manifest__copy,
.about-region-card__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: clamp(1.6rem, 4vw, 4rem);
    text-align: center;
}

.about-manifest__copy .about-section-label,
.about-region-card__copy .about-section-label {
    position: absolute;
    top: clamp(1rem, 1.6vw, 1.45rem);
    margin: 0;
}

.about-manifest__copy .about-section-label--corner-left {
    left: clamp(1.1rem, 2vw, 2rem);
}

.about-region-card__copy .about-section-label--corner-right {
    right: clamp(1.1rem, 2vw, 2rem);
}

.about-manifest__lead {
    color: var(--accent-vine);
    font-size: clamp(1.15rem, 1.45vw, 1.35rem);
    font-weight: 700;
    line-height: 1.65;
}

.about-manifest__copy p,
.about-region-card__copy p,
.about-belief p {
    max-width: 760px;
    margin: 0 auto var(--space-md);
    color: var(--text-main);
    font-size: var(--text-lg);
    line-height: 1.75;
    text-align: center;
}

.about-manifest__media,
.about-region-card__map {
    min-height: clamp(420px, 43vw, 620px);
    margin: 0;
    padding: 8px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 3px solid var(--bronze-frame);
    border-radius: calc(var(--radius-lg) - 4px);
    background: transparent;
    box-shadow:
        0 0 0 7px rgba(184, 131, 92, 0.12),
        0 20px 38px rgba(98, 61, 47, 0.12);
}

.about-manifest__media::before,
.about-region-card__map::before {
    content: '';
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: var(--radius-lg);
    background: var(--image-frame-bg);
}

.about-manifest__media img,
.about-region-card__map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 14px);
}

.about-manifest__copy .about-manifest__note {
    max-width: 760px;
    margin: var(--space-md) auto 0;
    padding: 0.95rem 1.35rem;
    border: 1px solid rgba(255, 233, 181, 0.42);
    border-radius: 999px;
    color: #f7f1dd;
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 245, 214, 0.28) 0%, transparent 26%),
        linear-gradient(145deg, rgba(92, 57, 49, 0.78) 0%, rgba(122, 62, 69, 0.72) 48%, rgba(143, 99, 63, 0.74) 100%);
    box-shadow: 0 14px 28px rgba(46, 33, 28, 0.16);
}

.about-beliefs {
    display: grid;
    gap: clamp(1.5rem, 2.4vw, 2.25rem);
}

.about-beliefs > .about-section-head {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 0 auto;
    padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1.5rem, 3vw, 3rem);
    border: 2px solid var(--bronze-frame);
    border-radius: var(--radius-lg);
    background: var(--card-unified-bg);
    box-shadow: var(--card-unified-shadow);
}

.about-beliefs > .about-section-head .about-section-title {
    max-width: none;
    margin: 0;
    font-size: clamp(2rem, 2.65vw, 3rem);
    line-height: 1.08;
    white-space: nowrap;
}

.about-beliefs > .about-section-head .about-section-label {
    margin-bottom: 0.35rem;
}

.about-beliefs__grid {
    display: grid;
    gap: var(--space-lg);
}

.about-belief {
    min-height: 280px;
    padding: clamp(1.6rem, 2.6vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.about-belief:hover {
    transform: translateY(-4px);
    border-color: var(--bronze-frame-strong);
    background: var(--card-unified-bg-hover);
    box-shadow: var(--card-unified-shadow-hover);
}

.about-belief__number {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border-radius: 999px;
    color: var(--site-icon-color);
    font-size: var(--text-xl);
    font-weight: 800;
    background: var(--site-icon-bg);
    border: var(--site-icon-border);
    box-shadow: var(--site-icon-shadow);
}

.about-belief__title {
    margin: 0 0 var(--space-md);
    color: var(--accent-vine);
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.about-region-card__map {
    min-height: clamp(420px, 39vw, 560px);
}

.about-region-card__map img {
    object-fit: contain;
    background: rgba(255, 253, 245, 0.54);
}

.about-region-card__note {
    width: min(100%, 540px);
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg);
    border: 2px solid rgba(184, 131, 92, 0.62);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78) 0%, transparent 34%),
        linear-gradient(145deg, rgba(255, 249, 238, 0.94) 0%, rgba(239, 222, 196, 0.82) 100%);
    text-align: center;
}

.about-region-card__note span {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--bronze-frame-strong);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-region-card__note strong {
    display: block;
    color: var(--accent-vine);
    font-size: var(--text-lg);
    line-height: 1.35;
}

@media (min-width: 900px) {
    .about-manifest {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .about-region-card {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .about-beliefs__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .about-beliefs > .about-section-head .about-section-title {
        white-space: normal;
    }

    .about-manifest__media,
    .about-region-card__map {
        min-height: 360px;
    }
}

@media (max-width: 520px) {
    .about-manifest,
    .about-region-card,
    .about-belief {
        border-width: 1.5px;
        border-radius: var(--radius-md);
    }

    .about-manifest__copy,
    .about-region-card__copy {
        padding: var(--space-xl) var(--space-lg);
    }

    .about-manifest__media,
    .about-region-card__map {
        min-height: 300px;
        border-radius: var(--radius-md);
    }

    .about-manifest__copy .about-manifest__note {
        border-radius: var(--radius-md);
    }
}

/* ===== FINAL ICON SYSTEM OVERRIDES ===== */
.why-us__icon,
.process-step__number,
.problems__marker,
.process-flow__number,
.case-stage__number,
.about-fact__value,
.competency__number,
.approach-item__number,
.about-belief__number,
.contacts-info__icon,
.contacts-page--redesign .card-icon,
.contacts-page--redesign .helper-icon,
.faq__icon {
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.24), transparent 42%),
        linear-gradient(135deg, #2e5746 0%, #173b2f 100%) !important;
    border: 2px solid rgba(197, 160, 89, 0.72) !important;
    color: #fff8e7 !important;
    box-shadow:
        0 12px 24px rgba(23, 59, 47, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
    -webkit-text-fill-color: currentColor !important;
}

.why-us__icon {
    border-radius: 999px !important;
}

.why-us__icon svg,
.contacts-info__icon svg,
.contacts-page--redesign .card-icon svg,
.contacts-page--redesign .helper-icon svg {
    color: currentColor !important;
    stroke: currentColor;
}

.process-step__number,
.problems__marker {
    font-family: var(--font-accent);
    font-weight: 700;
}

.problems__marker {
    box-shadow:
        0 0 0 15px var(--bg-main),
        0 12px 24px rgba(23, 59, 47, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.problems__item:hover .problems__marker {
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.3), transparent 42%),
        linear-gradient(135deg, #356551 0%, #173b2f 100%) !important;
    border-color: rgba(197, 160, 89, 0.92) !important;
    box-shadow:
        0 0 0 18px var(--bg-main),
        0 16px 30px rgba(23, 59, 47, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.case-stage__number {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1rem;
}

/* ===== FINAL LABEL/PILL SYSTEM OVERRIDES ===== */
.section__label,
.geography__label,
.about-hero__label,
.about-section-label,
.process-cta__label,
.blog-hero .section__label,
.blog-start__head .section__label,
.blog-main__head .section__label,
.blog-start-card__label,
.blog-lead__label,
.contacts-direct__label {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: fit-content;
    max-width: 100%;
    padding: 7px 17px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(184, 131, 92, 0.62) !important;
    color: #8c6840 !important;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(145deg, rgba(255, 252, 244, 0.98) 0%, rgba(248, 239, 222, 0.96) 52%, rgba(236, 216, 184, 0.9) 100%) !important;
    box-shadow:
        0 8px 18px rgba(98, 61, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
    font-family: var(--font-primary);
    font-size: var(--text-xs) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-align: center;
    -webkit-text-fill-color: currentColor !important;
}

.section__header > .section__label,
.blog-start__head .section__label,
.blog-main__head .section__label {
    margin-inline: auto;
}

.about-manifest__copy .about-section-label,
.about-region-card__copy .about-section-label {
    margin-inline: 0;
}

/* ===== FINAL CARD SPACING OVERRIDES ===== */
.for-whom__grid,
.services-overview__grid,
.cases-preview__grid {
    gap: clamp(0.9rem, 1.35vw, 1.25rem) !important;
}

.for-whom__card,
.service-card,
.case-card {
    padding: clamp(1.15rem, 1.7vw, 1.55rem) !important;
}

.for-whom__image-wrapper,
.service-card__image-wrapper {
    margin-bottom: clamp(0.9rem, 1.2vw, 1.1rem) !important;
}

.case-card__image {
    margin: clamp(1rem, 1.45vw, 1.25rem) clamp(1rem, 1.45vw, 1.25rem) 0 !important;
}

.for-whom__title,
.service-card__title,
.case-card__title {
    margin-bottom: 0.45rem !important;
}

.for-whom__text,
.service-card__text,
.case-card__text {
    line-height: 1.55 !important;
}

@media (min-width: 1024px) {
    .for-whom__grid,
    .services-overview__grid,
    .cases-preview__grid {
        row-gap: clamp(1rem, 1.4vw, 1.35rem) !important;
        column-gap: clamp(1rem, 1.5vw, 1.45rem) !important;
    }
}

/* ===== HOME FULL PHOTO STYLE — remove this block to rollback the rest of the homepage visual ===== */
.why-us__card,
.process-step,
.problems__item,
.cases-preview .case-card,
.articles-preview .articles-main .article-card,
.articles-preview .sidebar-block {
    border: 1px solid rgba(255, 235, 178, 0.78) !important;
    border-radius: 10px !important;
    outline: 0 !important;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16) !important;
    overflow: hidden;
}

.why-us__card:hover,
.process-step:hover,
.problems__item:hover,
.cases-preview .case-card:hover,
.articles-preview .articles-main .article-card:hover,
.articles-preview .sidebar-block:hover {
    border-color: rgba(255, 241, 207, 0.92) !important;
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22) !important;
}

.why-us__card,
.process-step,
.problems__item {
    isolation: isolate;
    background: var(--accent-vine) !important;
}

.why-us__card {
    min-height: 260px;
    padding: clamp(1.2rem, 1.7vw, 1.55rem) !important;
    justify-content: center;
}

.why-us__card::before,
.process-step::before,
.problems__item::before,
.cases-preview .case-card::before,
.articles-preview .articles-main .article-card::before,
.articles-preview .sidebar-block::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
}

.why-us__card::after,
.process-step::after,
.problems__item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.why-us__card:hover::after,
.process-step:hover::after,
.problems__item:hover::after {
    transform: scale(1.06);
}

.why-us__card:nth-child(1)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.48) 0%, rgba(36, 27, 20, 0.3) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/process-flow-how-we-work.png");
}

.why-us__card:nth-child(2)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.48) 0%, rgba(36, 27, 20, 0.3) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/krasnodar-map-districts.png");
}

.why-us__card:nth-child(3)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.48) 0%, rgba(36, 27, 20, 0.3) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-start-audit-v2.png");
}

.why-us__card:nth-child(4)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.48) 0%, rgba(36, 27, 20, 0.3) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-start-calendar-v2.png");
}

.why-us__icon,
.why-us__title,
.why-us__text,
.process-step__number,
.process-step__title,
.process-step__text,
.problems__marker,
.problems__item p {
    position: relative;
    z-index: 3;
}

.why-us__icon,
.process-step__number,
.problems__marker {
    background: rgba(255, 241, 207, 0.14) !important;
    border: 1px solid rgba(255, 241, 207, 0.82) !important;
    color: #fff1cf !important;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16) !important;
    backdrop-filter: blur(4px);
}

.why-us__title,
.process-step__title {
    color: #fff1cf !important;
    font-family: var(--font-accent);
    font-size: clamp(1.28rem, 1.6vw, 1.65rem);
    line-height: 1.14;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.why-us__text,
.process-step__text,
.problems__item p {
    color: rgba(255, 246, 222, 0.94) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.process-preview__steps {
    max-width: none;
}

.process-step {
    min-height: 300px;
    padding: clamp(1.2rem, 1.7vw, 1.55rem);
    justify-content: center;
}

.process-step:nth-child(1)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.8) 100%), url("../images/blog-start-audit-v2.png");
}

.process-step:nth-child(2)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.8) 100%), url("../images/private-landowners.jpg");
}

.process-step:nth-child(3)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.8) 100%), url("../images/blog-start-preparation-v2.png");
}

.process-step:nth-child(4)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.8) 100%), url("../images/process-hero-wide-team.png");
}

.process-preview .process-step::before {
    display: block !important;
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    background: transparent !important;
}

.process-preview .process-step::after {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: auto !important;
    z-index: -2 !important;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
}

.problems__grid::before {
    display: none;
}

.problems__item {
    min-width: 0;
    width: auto;
    min-height: 230px;
    padding: clamp(1rem, 1.5vw, 1.35rem);
    justify-content: center;
}

.problems__item:nth-child(4n+1)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/preparation.png");
}

.problems__item:nth-child(4n+2)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/care.png");
}

.problems__item:nth-child(4n+3)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/service.png");
}

.problems__item:nth-child(4n)::after {
    background-image: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.5) 0%, rgba(36, 27, 20, 0.32) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.36) 42%, rgba(24, 18, 13, 0.82) 100%), url("../images/blog-topic-article/trellis.png");
}

.problems__marker {
    margin-bottom: var(--space-md);
}

.cases-preview .case-card,
.articles-preview .articles-main .article-card {
    min-height: 380px;
    position: relative;
    isolation: isolate;
    justify-content: flex-end;
    background: var(--accent-vine) !important;
}

.cases-preview .case-card::after,
.articles-preview .articles-main .article-card::after {
    display: none;
}

.cases-preview .case-card__image,
.articles-preview .articles-main .article-card__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: auto;
    margin: 0 !important;
    padding: 0;
    border: 0;
    border-radius: inherit;
    overflow: hidden;
}

.cases-preview .case-card__image::before,
.articles-preview .articles-main .article-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%), linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.82) 100%);
}

.articles-preview .articles-main .article-card__image img {
    height: 100%;
    border-radius: inherit;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.articles-preview .articles-main .article-card:hover .article-card__image img {
    transform: scale(1.06);
}

.articles-preview .articles-main .article-card::before {
    content: '' !important;
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    left: 8px !important;
    width: auto !important;
    height: auto !important;
    z-index: 4 !important;
    pointer-events: none !important;
    border: 1px solid rgba(255, 241, 207, 0.72) !important;
    border-radius: 7px !important;
    background: transparent !important;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12) !important;
    transform: none !important;
    transition: border-color var(--transition-base), box-shadow var(--transition-base) !important;
}

.articles-preview .articles-main .article-card:hover::before {
    left: 8px !important;
    border-color: rgba(255, 241, 207, 0.86) !important;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.38),
        0 0 26px rgba(255, 241, 207, 0.16) !important;
}

.cases-preview .case-card__content,
.articles-preview .articles-main .article-card__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: 380px;
    padding: var(--space-xl);
    text-align: center;
}

.cases-preview .case-card__category,
.articles-preview .articles-main .blog-badge {
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.16);
    color: #fff1cf;
    padding: 6px 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.cases-preview .case-card__title,
.articles-preview .articles-main .article-card__title {
    align-self: center;
    color: #fff1cf !important;
    font-family: var(--font-accent);
    font-size: clamp(1.45rem, 1.85vw, 1.95rem);
    line-height: 1.12;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.articles-preview .articles-main .article-card__title a {
    color: inherit !important;
}

.cases-preview .case-card__text,
.articles-preview .articles-main .article-card__text {
    align-self: end;
    max-width: 94%;
    margin-bottom: var(--space-md);
    color: rgba(255, 246, 222, 0.94) !important;
    line-height: 1.45 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.cases-preview .case-card__link,
.articles-preview .articles-main .article-card .btn {
    border: 1px solid rgba(255, 241, 207, 0.82);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.14) !important;
    color: #fff1cf !important;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16);
    text-transform: none;
    letter-spacing: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.articles-preview .articles-main .article-card__date {
    color: rgba(255, 246, 222, 0.78);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.articles-preview .sidebar-block {
    background: radial-gradient(circle at 50% 35%, rgba(36, 27, 20, 0.18) 0%, rgba(36, 27, 20, 0.08) 46%, rgba(36, 27, 20, 0) 72%), linear-gradient(145deg, rgba(255, 252, 244, 0.98) 0%, rgba(244, 235, 219, 0.96) 58%, rgba(232, 213, 184, 0.92) 100%) !important;
}

.articles-preview .sidebar-block__title {
    color: var(--accent-vine);
}

@media (max-width: 1023px) {
    .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problems__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .why-us__card,
    .process-step,
    .problems__item {
        min-height: 260px;
    }

    .problems__grid {
        grid-template-columns: 1fr;
    }

    .cases-preview .case-card,
    .articles-preview .articles-main .article-card,
    .cases-preview .case-card__content,
    .articles-preview .articles-main .article-card__content {
        min-height: 340px;
    }
}

/* ===== HOME ORIGINAL FLOW RESTORE ===== */
.why-us__card {
    min-height: clamp(236px, 20vw, 268px) !important;
    padding: clamp(1.2rem, 1.75vw, 1.55rem) !important;
    border: 2px solid rgba(151, 100, 68, 0.9) !important;
    border-radius: var(--radius-lg) !important;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 78% 92%, rgba(197, 160, 89, 0.24) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(145deg, rgba(255, 252, 244, 0.98) 0%, rgba(249, 239, 221, 0.95) 54%, rgba(238, 219, 188, 0.92) 100%) !important;
    color: var(--text-main) !important;
    overflow: hidden;
    isolation: auto !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 -20px 36px rgba(197, 160, 89, 0.08),
        0 16px 34px rgba(86, 54, 39, 0.12) !important;
}

.why-us__card:hover {
    border-color: #8f633f !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.82),
        inset 0 -22px 38px rgba(197, 160, 89, 0.1),
        0 20px 42px rgba(127, 73, 83, 0.14) !important;
}

.why-us__card::before,
.why-us__card::after,
.problems__item::before,
.problems__item::after {
    content: none !important;
    display: none !important;
}

.why-us__icon {
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow: var(--site-icon-shadow) !important;
    backdrop-filter: none !important;
}

.why-us__title {
    color: var(--accent-vine) !important;
    font-family: var(--font-primary) !important;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

.why-us__text {
    color: #5f584f !important;
    text-shadow: none !important;
}

.why-us__card--art {
    aspect-ratio: 1 / 1;
    min-height: 0 !important;
    padding: clamp(1rem, 1.35vw, 1.25rem) clamp(0.9rem, 1.18vw, 1.1rem) !important;
    border: 2px solid rgba(222, 184, 112, 0.86) !important;
    border-radius: clamp(20px, 2vw, 28px) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 249, 237, 0.58) 46%, rgba(232, 205, 154, 0.36) 100%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(1.28) brightness(1.08);
    backdrop-filter: blur(30px) saturate(1.28) brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -20px 34px rgba(197, 160, 89, 0.1),
        inset 0 0 26px rgba(255, 255, 255, 0.24),
        0 0 0 1px rgba(106, 70, 40, 0.18),
        0 18px 36px rgba(40, 31, 23, 0.16),
        0 0 34px rgba(255, 236, 196, 0.26) !important;
    overflow: hidden !important;
    isolation: isolate !important;
    justify-content: center !important;
}

.why-us__card--art:hover {
    border-color: rgba(239, 203, 130, 0.98) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 250, 240, 0.62) 48%, rgba(232, 205, 154, 0.42) 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -22px 38px rgba(197, 160, 89, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(106, 70, 40, 0.2),
        0 22px 44px rgba(40, 31, 23, 0.18),
        0 0 38px rgba(255, 236, 196, 0.32) !important;
}

.why-us__card--art::before {
    content: '';
    display: block !important;
    position: absolute;
    inset: 10px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: calc(clamp(20px, 2vw, 28px) - 8px);
    box-shadow:
        inset 0 0 0 1px rgba(183, 139, 76, 0.42),
        inset 0 0 18px rgba(255, 255, 255, 0.22),
        0 0 0 1px rgba(183, 139, 76, 0.14);
}

.why-us__card--art::after {
    content: '';
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(128deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.12) 26%, rgba(255, 255, 255, 0) 48%),
        radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.24) 34%, rgba(255, 255, 255, 0) 66%),
        radial-gradient(circle at 20% 92%, rgba(197, 160, 89, 0.2) 0%, rgba(197, 160, 89, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 56%, rgba(107, 73, 42, 0.08) 100%);
}

.why-us__art {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: calc(clamp(20px, 2vw, 28px) - 2px);
    opacity: 0.42;
    filter: saturate(0.78) sepia(0.2) contrast(0.9);
    z-index: 0;
}

.why-us__card--art .why-us__icon {
    position: relative !important;
    z-index: 2;
    width: clamp(46px, 4.2vw, 58px) !important;
    height: clamp(46px, 4.2vw, 58px) !important;
    margin: 0 auto clamp(0.42rem, 0.58vw, 0.58rem) !important;
    border-width: 2px !important;
    background: radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 36%), linear-gradient(145deg, #164d37 0%, #0e3a29 100%) !important;
    border: 3px solid rgba(217, 176, 104, 0.92) !important;
    color: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 8px 18px rgba(86, 54, 39, 0.18) !important;
}

.why-us__card--art .why-us__icon svg {
    width: 58% !important;
    height: 58% !important;
}

.why-us__card--art .why-us__title {
    position: relative !important;
    z-index: 2;
    max-width: 95%;
    margin: 0 auto clamp(0.35rem, 0.48vw, 0.5rem) !important;
    color: #123d2c !important;
    font-size: clamp(1rem, 1.16vw, 1.18rem) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36) !important;
    text-wrap: balance;
}

.why-us__card--art .why-us__text {
    position: relative !important;
    z-index: 2;
    max-width: 96%;
    margin: 0 auto !important;
    color: rgba(54, 47, 39, 0.94) !important;
    font-size: clamp(0.75rem, 0.86vw, 0.88rem) !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.52) !important;
}

.process-preview__steps {
    max-width: 1000px !important;
}

.process-step {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    isolation: auto !important;
}

.process-step::before,
.process-step::after {
    content: none !important;
    display: none !important;
}

.process-step__number {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow: var(--site-icon-shadow) !important;
    backdrop-filter: none !important;
    margin-bottom: var(--space-lg) !important;
}

.process-step__title {
    color: var(--accent-vine) !important;
    font-family: var(--font-primary) !important;
    font-size: var(--text-lg) !important;
    line-height: 1.25 !important;
    text-shadow: none !important;
}

.process-step__text {
    color: var(--text-main) !important;
    text-shadow: none !important;
}

.problems__grid {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: space-between;
    gap: var(--space-lg);
    overflow-x: auto !important;
    padding: 20px 10px 40px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.problems__grid::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 50px !important;
    left: 20px !important;
    right: 20px !important;
    height: 1px !important;
    background-color: #c5a059 !important;
    z-index: 0 !important;
}

.problems__item {
    width: 200px !important;
    min-width: 180px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    isolation: auto !important;
}

.problems__item:hover {
    box-shadow: none !important;
}

.problems__marker {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: var(--space-lg) !important;
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow:
        0 0 0 15px var(--bg-main),
        var(--site-icon-shadow) !important;
    backdrop-filter: none !important;
}

.problems__item:hover .problems__marker {
    box-shadow:
        0 0 0 18px var(--bg-main),
        0 16px 30px rgba(23, 59, 47, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

.problems__item p {
    color: var(--text-main) !important;
    text-shadow: none !important;
}

@media (max-width: 767px) {
    .problems__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        justify-content: stretch !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .problems__grid::before {
        display: none !important;
    }

    .problems__item {
        width: auto !important;
        min-width: 0 !important;
        min-height: 150px !important;
        padding: 18px 12px !important;
        border: 1px solid rgba(197, 160, 89, 0.42) !important;
        border-radius: 10px !important;
        background: rgba(255, 253, 245, 0.62) !important;
        overflow: hidden !important;
    }

    .problems__marker {
        width: 48px !important;
        height: 48px !important;
        margin: 0 auto 12px !important;
        box-shadow: var(--site-icon-shadow) !important;
    }

    .problems__item p {
        font-size: 0.86rem !important;
        line-height: 1.42 !important;
    }

    .for-whom .for-whom__image {
        transform: none !important;
    }
}

@media (max-width: 900px) {
    .about-hero__image,
    .contacts-hero__image,
    .blog-hero__image {
        transform: none !important;
    }
}

@media (min-width: 768px) {
    .problems__grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        justify-content: stretch !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .problems__grid::before {
        display: none !important;
    }

    .problems__item {
        width: auto !important;
        min-width: 0 !important;
        min-height: 230px !important;
        padding: clamp(1rem, 1.5vw, 1.35rem) !important;
        border: 1px solid rgba(255, 235, 178, 0.78) !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        isolation: isolate !important;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .process-flow__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1100px) {
    .process-flow__cards {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 768px) {
    .process-preview .process-step:not(:last-child)::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 40px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 2px !important;
        background: #c5a059 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        z-index: -1 !important;
    }

    .process-preview .process-step:not(:last-child)::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 35px !important;
        left: calc(150% - 46px) !important;
        right: auto !important;
        bottom: auto !important;
        width: 10px !important;
        height: 10px !important;
        background: transparent !important;
        border: 0 !important;
        border-top: 2px solid #c5a059 !important;
        border-right: 2px solid #c5a059 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: rotate(45deg) !important;
        z-index: 0 !important;
    }
}

/* ===== HOME AUDIENCE PHOTO CARDS — remove this block to rollback the homepage "Наши услуги" visual ===== */
.for-whom .for-whom__card {
    min-height: 320px;
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(1.25rem, 1.8vw, 1.7rem) !important;
    text-align: center;
    background: var(--accent-vine);
    border: 1px solid rgba(255, 235, 178, 0.78);
    border-radius: 10px;
    outline: 0;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16);
}

.for-whom .for-whom__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 241, 207, 0.92);
    background: var(--accent-vine);
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22);
}

.for-whom .for-whom__card::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
}

.for-whom .for-whom__image-wrapper {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: auto;
    height: auto;
    margin: 0 !important;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    background: transparent;
}

.for-whom .for-whom__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 44%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.22) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.8) 100%);
}

.for-whom .for-whom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.for-whom .for-whom__card:hover .for-whom__image {
    transform: scale(1.06);
}

.for-whom .for-whom__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: 100%;
}

.for-whom .for-whom__title {
    align-self: center;
    max-width: 96%;
    margin: 0 auto var(--space-md) !important;
    font-family: var(--font-accent);
    font-size: clamp(1.55rem, 1.85vw, 2rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff1cf;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.for-whom .for-whom__text {
    align-self: end;
    max-width: 94%;
    margin: 0 auto;
    color: rgba(255, 246, 222, 0.94);
    font-size: clamp(0.92rem, 1vw, 1rem);
    font-weight: 500;
    line-height: 1.45 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

@media (max-width: 767px) {
    .for-whom .for-whom__card {
        min-height: 300px;
    }
}

/* ===== HOME SERVICES PHOTO CARDS — remove this block to rollback the homepage service-card visual ===== */
.services-overview .service-card {
    min-height: 330px;
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(1.25rem, 1.8vw, 1.7rem) !important;
    text-align: center;
    background: var(--accent-vine);
    border: 1px solid rgba(255, 235, 178, 0.78);
    border-radius: 10px;
    outline: 0;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16);
}

.services-overview .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 241, 207, 0.92);
    background: var(--accent-vine);
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22);
}

.services-overview .service-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
}

.services-overview .service-card__image-wrapper {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: auto;
    margin: 0 !important;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    background: transparent;
}

.services-overview .service-card__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 46%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.28) 34%, rgba(36, 27, 20, 0.08) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.2) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.78) 100%);
}

.services-overview .service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transform: scale(1.02);
    transition: transform var(--transition-base);
}

.services-overview .service-card:hover .service-card__image {
    transform: scale(1.06);
}

.services-overview .service-card__title,
.services-overview .service-card__text,
.services-overview .service-card__actions {
    position: relative;
    z-index: 3;
}

.services-overview .service-card__title {
    align-self: center;
    max-width: 96%;
    margin: 0 auto var(--space-md) !important;
    font-family: var(--font-accent);
    font-size: clamp(1.55rem, 1.85vw, 2rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff1cf;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.services-overview .service-card__text {
    align-self: end;
    max-width: 94%;
    margin: 0 auto var(--space-md);
    color: rgba(255, 246, 222, 0.94);
    font-size: clamp(0.92rem, 1vw, 1rem);
    font-weight: 500;
    line-height: 1.45 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62), 0 8px 18px rgba(0, 0, 0, 0.38);
}

.services-overview .service-card__actions {
    align-self: end;
}

.services-overview .service-card .btn {
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 241, 207, 0.82);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.14);
    color: #fff1cf;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.services-overview .service-card .btn:hover {
    background: rgba(255, 241, 207, 0.24);
    color: #fff6de;
}

@media (max-width: 767px) {
    .services-overview .service-card {
        min-height: 310px;
    }
}

/* ===== FINAL HOME SECTION RHYTHM OVERRIDES ===== */
.why-us {
    padding-bottom: clamp(0.85rem, 1.2vw, 1.15rem) !important;
}

.why-us + .for-whom {
    padding-top: clamp(3.1rem, 3.9vw, 3.8rem) !important;
}

.for-whom .section__header {
    margin-bottom: clamp(1rem, 1.55vw, 1.35rem) !important;
}

/* ===== FINAL CONTACTS SCALE OVERRIDES ===== */
.contacts-page--redesign .contacts-container {
    width: min(1360px, calc(100% - 28px)) !important;
    padding-inline: 0 !important;
}

.contacts-page--redesign .contacts-grid.contacts-grid--direct {
    gap: clamp(1.1rem, 1.8vw, 1.5rem) !important;
}

.contacts-page--redesign .contacts-card {
    padding: clamp(2rem, 2.4vw, 2.5rem) !important;
}

.contacts-page--redesign .regions-list span {
    min-height: 64px !important;
    padding: 13px 15px !important;
    font-size: 13px !important;
}

.contacts-page--redesign .contact-actions {
    gap: 14px !important;
}

.contacts-page--redesign .contact-action {
    min-height: 84px !important;
    grid-template-columns: 58px minmax(0, 1fr) 34px !important;
    gap: 18px !important;
    padding: 14px 18px !important;
}

.contacts-page--redesign .action-icon {
    width: 54px !important;
    height: 54px !important;
}

.contacts-page--redesign .action-text strong {
    font-size: 24px !important;
}

.contacts-page--redesign .action-text small {
    font-size: 15px !important;
}

@media (max-width: 820px) {
    .contacts-page--redesign .contacts-container {
        width: min(100% - 28px, 1180px) !important;
    }
}

/* ===== FINAL SERVICES FLIP CARD FIX ===== */
.services-page .service-card {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 30px !important;
    perspective: 1600px;
    transform-style: preserve-3d;
}

.services-page .service-card:hover {
    border-color: transparent !important;
    box-shadow: none !important;
}

.services-page .service-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    transform-style: preserve-3d;
}

.services-page .service-card__front,
.services-page .service-card__back {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bronze-frame) !important;
    border-radius: inherit !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 14px 30px rgba(98, 61, 47, 0.13) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.services-page .service-card__front {
    background: #0f241f;
}

.services-page .service-card__back {
    transform: rotateY(180deg);
}

.services-page .btn-flip {
    pointer-events: auto;
    cursor: pointer;
}

.services-page .service-card:focus-visible {
    outline: 3px solid rgba(197, 160, 89, 0.68);
    outline-offset: 7px;
}

/* ===== SERVICES PAGE PHOTO CARDS — remove this block to rollback the services-page visual ===== */
.services-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(218, 235, 248, 0.48) 0%, rgba(218, 235, 248, 0) 30%),
        linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(248, 242, 232, 0.96) 100%);
}

.services-page .services-grid {
    gap: clamp(1.1rem, 1.8vw, 1.6rem) !important;
}

.services-page .service-card {
    height: clamp(430px, 42vw, 500px);
    border-radius: 10px !important;
}

.services-page .service-card__front,
.services-page .service-card__back {
    border: 1px solid rgba(255, 235, 178, 0.78) !important;
    border-radius: 10px !important;
    box-shadow:
        0 0 0 2px rgba(151, 111, 45, 0.82),
        0 0 0 6px rgba(255, 244, 214, 0.12),
        inset 0 0 0 1px rgba(255, 247, 224, 0.28),
        0 18px 38px rgba(42, 31, 22, 0.16) !important;
    overflow: hidden;
}

.services-page .service-card:hover .service-card__front,
.services-page .service-card:hover .service-card__back {
    border-color: rgba(255, 241, 207, 0.92) !important;
    box-shadow:
        0 0 0 2px rgba(197, 160, 89, 0.96),
        0 0 0 7px rgba(255, 244, 214, 0.2),
        inset 0 0 0 1px rgba(255, 247, 224, 0.38),
        0 24px 48px rgba(42, 31, 22, 0.22) !important;
}

.services-page .service-card__front {
    justify-content: center;
    gap: var(--space-xl);
    padding: clamp(1.4rem, 2vw, 1.9rem) !important;
    background: var(--accent-vine);
}

.services-page .service-card__front::before,
.services-page .service-card__back::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(255, 241, 207, 0.72);
    border-radius: 7px;
    box-shadow:
        inset 0 0 0 1px rgba(125, 94, 46, 0.32),
        0 0 22px rgba(255, 241, 207, 0.12);
}

.services-page .service-card__front::after {
    background:
        radial-gradient(circle at 50% 43%, rgba(36, 27, 20, 0.46) 0%, rgba(36, 27, 20, 0.3) 34%, rgba(36, 27, 20, 0.08) 62%),
        linear-gradient(180deg, rgba(16, 18, 15, 0.24) 0%, rgba(16, 18, 15, 0.34) 42%, rgba(24, 18, 13, 0.82) 100%);
    z-index: 2;
}

.services-page .service-card__front img {
    filter: saturate(0.95) contrast(1.04);
}

.services-page .service-card__title {
    display: block;
    width: 100%;
    max-width: 94%;
    padding: 0;
    color: #fff1cf;
    background: none;
    -webkit-text-fill-color: currentColor;
    font-size: clamp(1.7rem, 2.35vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.64), 0 14px 28px rgba(0, 0, 0, 0.42);
}

.services-page .service-card__title::after {
    display: none;
}

.services-page .btn-flip,
.services-page .btn-back {
    position: relative;
    z-index: 10;
    width: auto;
    min-width: 170px;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 241, 207, 0.82);
    border-radius: 999px;
    background: rgba(255, 241, 207, 0.14) !important;
    color: #fff1cf !important;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 12px 22px rgba(16, 12, 8, 0.16);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.services-page .btn-flip:hover,
.services-page .btn-back:hover {
    background: rgba(255, 241, 207, 0.24) !important;
    color: #fff6de !important;
    transform: translateY(-2px);
}

.services-page .service-card__back {
    padding: clamp(1.05rem, 1.55vw, 1.35rem) !important;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 250, 236, 0.98) 0%, rgba(255, 250, 236, 0) 34%),
        linear-gradient(145deg, rgba(255, 252, 244, 0.98) 0%, rgba(244, 235, 219, 0.96) 58%, rgba(232, 213, 184, 0.92) 100%);
    border-color: rgba(197, 160, 89, 0.62) !important;
}

.services-page .service-card__back::before {
    border-color: rgba(151, 111, 45, 0.42);
    box-shadow:
        inset 0 0 0 1px rgba(255, 247, 224, 0.44),
        0 0 22px rgba(151, 111, 45, 0.08);
}

.services-page .service-card__back-title {
    margin-bottom: 0.8rem;
    padding-bottom: 0.55rem;
    color: var(--accent-vine);
    font-size: clamp(1.32rem, 1.75vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: none;
    border-bottom-color: rgba(151, 111, 45, 0.24);
}

.services-page .service-card__list {
    gap: 0.42rem;
    align-items: stretch;
}

.services-page .service-card__list li {
    color: rgba(33, 64, 49, 0.92);
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 0.58rem;
    min-width: 0;
    min-height: 34px;
    padding: 0.24rem 0.4rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.22);
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    line-height: 1.18;
    white-space: normal;
    letter-spacing: 0;
    text-align: left;
}

.services-page .service-card__list li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    transform: translateY(-1px);
    flex: none;
}

.services-page .btn-back {
    background: linear-gradient(135deg, rgba(33, 64, 49, 0.98) 0%, rgba(23, 49, 37, 0.98) 100%) !important;
    border-color: rgba(33, 64, 49, 0.84);
}

@media (max-width: 767px) {
    .services-page .service-card {
        height: 430px;
    }

    .services-page .service-card__title {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }
}

/* ===== FINAL CONTACTS MAP DECOR REMOVAL ===== */
.contacts-page--redesign .card-map-line {
    display: none !important;
}

@media (max-width: 760px) {
    .contacts-page--redesign .contacts-card {
        padding: 22px !important;
    }

    .contacts-page--redesign .contact-action {
        min-height: 72px !important;
        grid-template-columns: 48px minmax(0, 1fr) 24px !important;
        gap: 12px !important;
        padding: 12px !important;
    }

    .contacts-page--redesign .action-icon {
        width: 46px !important;
        height: 46px !important;
    }

    .contacts-page--redesign .action-text strong {
        font-size: 19px !important;
    }

    .contacts-page--redesign .action-text small {
        font-size: 13px !important;
    }
}

/* ===== ARTICLE EDITORIAL TEXT SYSTEM ===== */
.article-longread-hero .article-content__header {
    display: grid;
    justify-items: center;
    text-align: center;
}

.article-longread-hero .article-content__meta {
    justify-content: center;
}

.article-longread-hero .article-content__title {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: balance;
}

.article-longread-hero .article-longread-hero__subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.article-content__body {
    text-align: left;
}

.article-content__body > p,
.article-content__body > h2,
.article-content__body > h3,
.article-content__body > ul,
.article-content__body > ol {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.article-content__body > p {
    color: rgba(38, 47, 41, 0.9);
    font-size: clamp(1.05rem, 1.16vw, 1.16rem);
    line-height: 1.82;
    text-align: left;
}

.article-content__body > p + p {
    margin-top: 1.05rem;
}

.article-content__body > .article-inline-heading {
    margin-top: 0.45rem;
    margin-bottom: 0.7rem;
    color: rgba(151, 111, 45, 0.98);
    font-size: clamp(1.08rem, 1.28vw, 1.24rem);
    font-weight: 800;
    line-height: 1.35;
}

.article-content__body > h2,
.article-content__body > h3 {
    max-width: none;
    color: var(--vine-dark);
    text-align: left;
    letter-spacing: 0;
}

.article-content__body > h2 {
    position: relative;
    margin-top: clamp(2.5rem, 4vw, 3.35rem);
    margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
    padding-left: 1.05rem;
    border-left: 5px solid rgba(197, 160, 89, 0.88);
    font-size: clamp(1.55rem, 2.35vw, 2.12rem);
    line-height: 1.16;
}

.article-content__body > h2::after {
    content: '';
    display: block;
    width: min(180px, 42%);
    height: 1px;
    margin-top: 0.75rem;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.64), rgba(197, 160, 89, 0));
}

.article-content__body > h3 {
    margin-top: clamp(1.7rem, 3vw, 2.25rem);
    margin-bottom: 0.8rem;
    font-size: clamp(1.22rem, 1.75vw, 1.48rem);
    line-height: 1.24;
}

.article-content__body > ul,
.article-content__body > ol {
    display: grid;
    gap: 0.72rem;
    margin-top: 1rem;
    margin-bottom: 1.45rem;
    padding-left: 0;
}

.article-content__body > ul > li,
.article-content__body > ol > li {
    position: relative;
    margin: 0;
    padding-left: 2rem;
    color: rgba(38, 47, 41, 0.9);
    font-size: clamp(1.02rem, 1.08vw, 1.12rem);
    line-height: 1.68;
    list-style: none;
    text-align: left;
}

.article-content__body > ul > li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0.35rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.92);
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.12);
}

.article-content__body > ol {
    counter-reset: articleStep;
}

.article-content__body > ol > li {
    counter-increment: articleStep;
    padding-left: 2.35rem;
}

.article-content__body > ol > li::before {
    content: counter(articleStep);
    position: absolute;
    top: 0.2rem;
    left: 0;
    display: grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: rgba(33, 64, 49, 0.94);
    color: #fff7e5;
    font-size: 0.82rem;
    font-weight: 800;
}

.article-content__body > .article-lead,
.article-content__body > .article-brief,
.article-content__body > .article-note,
.article-content__body > .article-help-box,
.article-content__body > .article-faq,
.article-content__body > .article-expert-quote,
.article-content__body > .article-checklist {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.article-content__body .article-lead {
    padding: clamp(1.45rem, 2.5vw, 2.25rem);
    background:
        radial-gradient(circle at 8% 12%, rgba(218, 235, 248, 0.34), transparent 36%),
        linear-gradient(135deg, rgba(255, 253, 245, 0.94), rgba(247, 241, 229, 0.86));
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-left: 6px solid var(--accent-gold);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.68),
        0 14px 30px rgba(42, 31, 22, 0.06);
    color: rgba(28, 76, 74, 0.96);
    text-align: left;
}

.article-content__body .article-brief,
.article-content__body .article-note,
.article-content__body .article-help-box,
.article-content__body .article-faq,
.article-content__body .article-checklist {
    padding: clamp(1.35rem, 2.2vw, 2rem);
    text-align: left;
}

.article-content__body .article-note p,
.article-content__body .article-help-box p,
.article-content__body .article-faq p {
    max-width: 880px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.article-content__body .article-brief ul {
    padding-left: 0;
}

.article-content__body .article-brief li {
    display: flex;
    align-items: flex-start;
    margin: 0;
    color: var(--vine-dark);
    list-style: none;
    text-align: left;
}

.article-content__body .article-brief li::marker {
    content: '';
}

@media (max-width: 640px) {
    .article-longread-hero .article-content__title {
        max-width: 100%;
        text-align: center;
    }

    .article-longread-hero .article-longread-hero__subtitle {
        text-align: center;
    }

    .article-content__body > p,
    .article-content__body > h2,
    .article-content__body > h3,
    .article-content__body > ul,
    .article-content__body > ol {
        margin-left: 0;
        margin-right: 0;
    }

    .article-content__body > h2 {
        padding-left: 0.85rem;
    }

    .article-content__body > ul > li,
    .article-content__body > ol > li {
        padding-left: 1.7rem;
    }
}

/* Final home problems layout: process-style circles in one horizontal row. */
.problems__grid {
    position: relative !important;
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: clamp(0.85rem, 1.5vw, 1.15rem) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 20px 4px 28px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}

.problems__grid::-webkit-scrollbar {
    display: none !important;
}

.problems__grid::before {
    content: '' !important;
    position: absolute !important;
    top: 50px !important;
    left: 24px !important;
    right: 24px !important;
    display: block !important;
    height: 1px !important;
    background: rgba(197, 160, 89, 0.62) !important;
    z-index: 0 !important;
}

.problems__item {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex: 1 0 118px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 118px !important;
    max-width: 160px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    overflow: visible !important;
    isolation: auto !important;
}

.problems__item::before,
.problems__item::after {
    content: none !important;
    display: none !important;
}

.problems__marker {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto var(--space-lg) !important;
    border-radius: 50% !important;
    background: var(--site-icon-bg) !important;
    border: var(--site-icon-border) !important;
    color: var(--site-icon-color) !important;
    box-shadow:
        0 0 0 12px var(--bg-main),
        var(--site-icon-shadow) !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
}

.problems__item:hover,
.problems__item:hover .problems__marker {
    transform: none !important;
}

.problems__item p {
    position: relative !important;
    z-index: 2 !important;
    max-width: 150px !important;
    margin: 0 auto !important;
    color: var(--text-main) !important;
    font-size: clamp(0.78rem, 1.04vw, 0.95rem) !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;
    text-align: center !important;
    text-shadow: none !important;
}

@media (max-width: 767px) {
    .problems__grid {
        justify-content: flex-start !important;
        gap: 18px !important;
        padding-inline: 16px !important;
    }

    .problems__item {
        flex-basis: 132px !important;
        min-width: 132px !important;
    }

    .problems__item p {
        font-size: 0.86rem !important;
    }
}
