/* ===== CORE VARIABLES ===== */
:root {
    /* Modern Dark Green & Gold Color Scheme */
    --primary-color: #1a4d3a;       /* Deep forest green */
    --secondary-color: #d4af37;     /* Gold */
    --accent-color: #f4d03f;        /* Bright gold */
    --tertiary-color: #2d6a4f;      /* Medium green */
    --text-dark: #1c1c1c;           /* Almost black */
    --text-light: #4a5568;          /* Dark gray */
    --white: #ffffff;               /* Pure white */
    --cream: #faf8f3;               /* Cream background */
    --light-gray: #f7fafc;          /* Very light gray */
    --border-color: #e2e8f0;        /* Light border */
    --shadow: 0 10px 25px -5px rgba(26, 77, 58, 0.1); /* Green shadow */
    --shadow-lg: 0 25px 50px -12px rgba(26, 77, 58, 0.15); /* Large green shadow */
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2); /* Gold shadow */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --text-medium: #2d3748;
    --text-muted: #718096;
    --primary-dark: #0f2419;
    --primary-light: #52b788;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --border-light: #e5e7eb;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --hero-bg: linear-gradient(135deg, #1a4d3a 0%, #2d6a4f 100%);
    --footer-bg: #0f2419;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-green: linear-gradient(135deg, #1a4d3a 0%, #52b788 100%);
}

/* ===== RESET STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

main {
    flex: 1 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 4rem; 
    font-weight: var(--font-weight-black);
    margin-bottom: 2rem;
}
h2 { 
    font-size: 3rem; 
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.75rem;
}
h3 { 
    font-size: 2.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}
h4 { 
    font-size: 1.875rem;
    font-weight: var(--font-weight-semibold);
}
h5 { 
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
}
h6 { 
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
}

.section-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.lead {
    font-size: 1.375rem;
    font-weight: var(--font-weight-light);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ===== MODERN HEADER ===== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 77, 58, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(26, 77, 58, 0.1);
    transition: var(--transition-normal);
}

.modern-header.scrolled {
    background: rgba(15, 36, 25, 0.98);
    box-shadow: 0 12px 40px rgba(26, 77, 58, 0.2);
}

/* Header Top Bar */
.header-top {
    background: var(--primary-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-top-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Remove social media styles */

/* Main Navigation */
.main-navigation {
    padding: 1rem 0;
    position: relative;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Desktop Menu */
.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    border-radius: var(--radius);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Remove CTA Button styles */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 4px;
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(26, 77, 58, 0.3);
    overflow: hidden;
}

.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-lg);
    border-radius: var(--radius);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
    transform: translateX(8px);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.mobile-contact-item i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

/* Remove mobile social styles */

/* Body padding for fixed header */
body {
    padding-top: 100px; /* Reduced padding since header is smaller */
}

/* Contact button in header - Remove old styles */
.contact-btn,
.book-now-btn {
    display: none; /* Hide old buttons */
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Ensure logo, menu and right column align correctly */
@media (min-width: 992px) {
    .header-main .container {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        max-width: 1320px; /* Увеличиваем максимальную ширину контейнера */
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-collapse {
        justify-content: flex-start;
        margin-left: 10px;
    }
    
    .navbar-nav {
        gap: 0.25rem;
        flex-wrap: nowrap;
        display: flex;
        align-items: center;
    }
    
    .navbar-nav .nav-item {
        white-space: nowrap;
    }
}

/* Дополнительные стили для больших экранов */
@media (min-width: 1200px) {
    .header-main .container {
        max-width: 1400px;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.9rem;
    }
}

/* Для очень больших экранов */
@media (min-width: 1400px) {
    .header-main .container {
        max-width: 1600px;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--hero-bg);
    color: var(--white);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: var(--font-weight-light);
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-section .landing-pages {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3rem;
}

.hero-section .showcase-container {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.showcase-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* ===== КНОПКИ ===== */
.btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius);
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn::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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
    box-shadow: var(--shadow-gold);
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
    box-shadow: var(--shadow);
    min-height: 48px;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 77, 58, 0.3);
    color: var(--white);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    padding: 0.875rem 2.25rem;
    font-size: var(--font-size-base);
    min-height: 48px;
}

.btn-outline-primary:hover {
    background: var(--gradient-green);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    padding: 0.875rem 2.25rem;
    font-size: var(--font-size-base);
    min-height: 48px;
}

.btn-outline-secondary:hover {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: var(--font-size-sm);
    min-height: 36px;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: var(--font-size-lg);
    min-height: 56px;
    border-radius: var(--radius-lg);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: var(--cream);
    padding: 8rem 0;
}

.blog-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(26, 77, 58, 0.15);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 2.5rem;
}

.blog-card-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: var(--font-weight-normal);
}

.blog-card-meta {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-link:hover {
    color: inherit;
}

.blog-card-meta .date {
    display: flex;
    align-items: center;
}

.blog-card-meta i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ===== ПАГИНАЦИЯ ===== */
.pagination {
    gap: 0.75rem;
    margin-top: 4rem;
}

.page-link {
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    transition: var(--transition-normal);
    font-weight: var(--font-weight-medium);
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.page-link:hover {
    background: var(--gradient-green);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.page-item.active .page-link {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    background: var(--white);
    transform: none;
    box-shadow: none;
}

/* ===== FOOTER ===== */
.footer-main {
    background: var(--footer-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-main a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: var(--font-weight-medium);
}

.footer-main a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-main .copyright {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* ===== SINGLE POST PAGE ===== */
.post-header-section {
    padding: 4rem 0 2rem;
    background: var(--cream);
}

.post-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.post-meta {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    margin-bottom: 2rem;
}

.post-date {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
}

.post-featured-image {
    width: 100%;
    text-align: center;
    margin: 3rem auto;
    max-width: 1400px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.post-content {
    background-color: var(--white);
    padding: 4rem 0;
}

.post-body {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    max-width: 900px;
    margin: 0 auto;
    font-weight: var(--font-weight-normal);
}

.post-body h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.post-body h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.post-body p {
    margin-bottom: 2rem;
    font-size: var(--font-size-lg);
    line-height: 1.8;
}

.post-body img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2.5rem 0;
    display: block;
    box-shadow: var(--shadow);
}

.post-body .wp-block-image {
    margin: 3rem 0;
}

.post-body figure {
    max-width: 100%;
    width: 100%;
    margin: 3rem 0;
}

.post-body figure img {
    margin: 0;
}

.post-body figure figcaption {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    font-weight: var(--font-weight-light);
}

/* ===== BREADCRUMBS ===== */
.custom-breadcrumb {
    padding: 0;
    margin-bottom: 1.5rem;
    background: transparent;
}

.custom-breadcrumb .breadcrumb-item {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.custom-breadcrumb .breadcrumb-link {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition-normal);
}

.custom-breadcrumb .breadcrumb-link:hover {
    color: var(--primary-color);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

/* Responsive styles for breadcrumbs */
@media (max-width: 576px) {
    .custom-breadcrumb {
        margin-bottom: 1rem;
    }
    
    .custom-breadcrumb .breadcrumb-item {
        font-size: var(--font-size-xs);
    }
    
    .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.25rem;
    }
}

/* ===== RESPONSIVE STYLES ===== */
/* Large screens */
@media (max-width: 1400px) {
    .nav-wrapper {
        gap: 1rem;
    }
    
    .desktop-menu {
        margin: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.625rem 1rem;
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .blog-card-body {
        padding: 2rem;
    }
    
    .post-body {
        font-size: var(--font-size-base);
    }
    
    .header-contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    /* Hide desktop elements */
    .header-top {
        display: none;
    }
    
    .desktop-menu {
        display: none;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Adjust body padding */
    body {
        padding-top: 80px;
    }
    
    /* Navigation adjustments */
    .main-navigation {
        padding: 0.75rem 0;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
    
    .brand-name {
        font-size: 1.375rem;
    }
    
    /* Other responsive styles */
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .post-title {
        font-size: 2.75rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-list {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 2.5rem;
    }
    
    .blog-section {
        padding: 6rem 0;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .main-navigation {
        padding: 0.5rem 0;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-menu a {
        padding: 0.875rem 1.25rem;
        font-size: var(--font-size-base);
    }
    
    .mobile-social-link {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    /* Other responsive styles */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .post-title {
        font-size: 2.25rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .blog-card-body {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.5rem;
    }
    
    .showcase-container {
        margin-top: 2rem;
    }
    
    .blog-section {
        padding: 4rem 0;
    }
    
    .post-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-item h3 {
        padding: 1.5rem 1.5rem 1rem;
        font-size: 1.375rem;
    }
    
    .post-item p {
        padding: 0 1.5rem;
        font-size: var(--font-size-sm);
    }
    
    .post-item > a:last-child {
        margin: 0 1.5rem 1.5rem;
        padding: 0.625rem 1.5rem;
    }
    
    .page-content {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    .main-navigation {
        padding: 0.375rem 0;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 1.5px;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-nav-menu a {
        padding: 0.75rem 1rem;
        font-size: var(--font-size-sm);
    }
    
    .mobile-contact {
        gap: 0.75rem;
    }
    
    .mobile-contact-item {
        font-size: var(--font-size-xs);
    }
    
    .mobile-social {
        gap: 0.75rem;
    }
    
    .mobile-social-link {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    /* Other responsive styles */
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .post-title {
        font-size: 1.875rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
    
    .blog-card-body {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-sm);
    }
    
    .btn-sm {
        padding: 0.5rem 1.25rem;
        font-size: var(--font-size-xs);
    }
    
    .post-body {
        font-size: var(--font-size-base);
    }
    
    .post-body h2 {
        font-size: 2rem;
        margin-top: 2.5rem;
    }
    
    .post-body h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .page-content {
        padding: 1.5rem;
        margin: 1.5rem 0.5rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
}

/* Стили для WordPress */
.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.post-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
    z-index: 1;
}

.post-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.post-item:hover::before {
    transform: scaleX(1);
}

.post-featured-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-item:hover .post-featured-image img {
    transform: scale(1.08);
}

.post-item h3 {
    padding: 2rem 2rem 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 0;
}

.post-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

.post-item h3 a:hover {
    color: var(--secondary-color);
}

.post-item p {
    padding: 0 2rem;
    color: var(--text-light);
    flex-grow: 1;
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-item > a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 2rem 2rem;
    padding: 0.75rem 2rem;
    background: var(--gradient-green);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-normal);
    align-self: flex-start;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-item > a:last-child:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* WordPress пагинация */
.pagination-container {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    margin: 0 0.375rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
    font-weight: var(--font-weight-medium);
    min-width: 48px;
    height: 48px;
    background: var(--white);
}

.page-numbers:hover {
    background: var(--gradient-green);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.page-numbers.current {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.page-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin: 3rem auto;
    max-width: 1000px;
}

.page-content h1 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.page-content .content {
    line-height: 1.8;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
}

/* Хлебные крошки WordPress */
.breadcrumbs {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    border: 1px solid var(--border-light);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}