:root {
    --bg-color: #F9FAFB;
    --card-bg: #FFFFFF;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --accent: #F97316;
    --accent-hover: #EA580C;
    --nav-bg: #FFFFFF;
    --radius: 16px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; color: var(--text-main); }
a { text-decoration: none; color: inherit; transition: 0.2s ease; }

.nav-wrapper {
    background: var(--nav-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dock {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111;
}

.nav-links-group { display: flex; align-items: center; gap: 30px; }
.link-list { display: flex; list-style: none; gap: 24px; margin: 0; padding: 0; }
.link-list a { font-size: 0.9rem; font-weight: 600; color: var(--text-main); }
.link-list a:hover { color: var(--accent); }
.nav-btn { padding: 10px 24px; font-size: 0.9rem; }

.visual-intro {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.bg-img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.intro-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.hotel-headline {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin: 0;
    color: #111;
    flex: 1;
}

.badge {
    background: #FEF3C7; color: #D97706;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 6px 10px; border-radius: 6px; letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 5px;
}

.summary-wrapper { margin-bottom: 25px; flex-grow: 1; }
.hotel-summary {
    font-size: 1rem; color: var(--text-muted); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 10; -webkit-box-orient: vertical; overflow: hidden;
}

.action-btn {
    background-color: var(--accent); color: #fff; border-radius: 8px;
    font-family: var(--font-head); font-weight: 700; display: inline-block;
    border: none; cursor: pointer; transition: 0.2s;
    line-height: 1.2; text-decoration: none !important;
}
.action-btn:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

.hero-btn { 
    width: 100%; text-align: center; padding: 18px 24px; font-size: 1.1rem; 
    max-width: 320px; margin: 0 auto; display: block; 
}

.page-body { padding: 60px 0; }
.content-layout { max-width: 1000px; margin: 0 auto; width: 90%; }
.insight-card { background: var(--card-bg); border-radius: var(--radius); padding: 50px; border: 1px solid #E5E7EB; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.card-header h2 { font-size: 2rem; margin-bottom: 40px; }

.card-header-internal { margin-bottom: 30px; }
.card-header-internal h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--text-main); }
.divider { width: 80px; height: 6px; background: var(--accent); border-radius: 3px; }

.article-content { font-size: 1.05rem; color: var(--text-main); line-height: 1.8; }
.article-content p { margin-bottom: 25px; }

.cta-wrapper.extra-spacing {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid #f0f0f0; text-align: center;
}

.dual-list-container { display: flex; gap: 50px; margin-bottom: 50px; }
.upsides-list, .downsides-list { flex: 1; }
.upsides-list h3, .downsides-list h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.upsides-list ul, .downsides-list ul { list-style: none; }
.upsides-list li, .downsides-list li { margin-bottom: 18px; display: flex; gap: 15px; align-items: flex-start; }

.icon-box {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box.pro { background: #DCFCE7; color: #16A34A; }
.icon-box.con { background: #FEE2E2; color: #DC2626; }
.icon { font-weight: 700; font-size: 1.5rem; line-height: 1; padding-bottom: 2px; }
.list-text { font-size: 1rem; font-weight: 500; color: var(--text-main); padding-top: 2px; }

.cta-wrapper { text-align: center; padding-top: 30px; border-top: 1px solid #F3F4F6; }
.text-link { font-weight: 700; color: var(--accent); font-size: 1.1rem; border-bottom: 2px solid transparent; }
.text-link:hover { border-bottom-color: var(--accent); }

.criteria-list ul { list-style: none; padding: 0; margin: 0; }

.criteria-list li {
    display: grid;
    grid-template-columns: 1fr auto; 
    grid-template-rows: auto auto;
    align-items: center;
    gap: 5px 15px; 
    
    margin-bottom: 35px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 25px;
}
.criteria-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.criteria-name {
    grid-column: 1; grid-row: 1;
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text-main);
}
.stars {
    grid-column: 2; grid-row: 1;
    display: flex; gap: 4px;
}
.star {
    width: 18px; height: 18px; background-color: #ddd;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star.filled { background-color: #F59E0B; }
.criteria-description {
    grid-column: 1 / span 2; grid-row: 2;
    font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-top: 5px;
    display: block;
}

.bottom-deck { background: #fff; border-top: 1px solid #eee; padding: 60px 0; color: #999; font-size: 0.85rem; }
.bottom-deck .dock { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-left { flex: 1 1 50%; max-width: 600px; text-align: left; }
.disclaimer { line-height: 1.6; }
.footer-right { flex: 0 0 auto; }
.legal-links { display: flex; gap: 25px; white-space: nowrap; }

#c-ban {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    
    background: #1F2937;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    
    width: auto;
    max-width: 90vw;
    min-width: min-content;
}

#c-btn {
    background: #fff;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    border: none;
    
    flex-shrink: 0;
    white-space: nowrap;
    
    /* ЖЕЛЕЗНЫЙ ОТСТУП СЛЕВА */
    margin-left: 25px; 
}

#c-ban p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

#c-ban a {
    color: var(--accent);
    text-decoration: underline;
    margin-left: 4px;
    white-space: nowrap;
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: #000; margin: 5px 0; border-radius: 3px; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-links-group { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: #fff; padding: 30px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
        flex-direction: column; text-align: center; gap: 20px; border-bottom: 1px solid #eee;
    }
    .nav-links-group.is-open { display: flex; }
    .link-list { flex-direction: column; gap: 20px; }
    .nav-btn { display: inline-block; width: 100%; max-width: 300px; }
    
    .card-top-row { flex-direction: column; gap: 10px; align-items: flex-start; }
    .badge { margin-top: 0; align-self: flex-start; }
    .hotel-headline { font-size: 1.8rem; }
    
    .visual-intro { height: auto; min-height: 500px; padding: 40px 0; align-items: flex-start; }
    .intro-card { padding: 30px 20px; width: 100%; margin-top: 20px; }
    .hotel-summary { -webkit-line-clamp: unset; display: block; overflow: visible; }
    .hero-btn { max-width: 100%; }
    
    .dual-list-container { flex-direction: column; gap: 30px; }
    .insight-card { padding: 30px 20px; }
    
    .card-header-internal h1 { font-size: 2rem; }
    .page-article { padding: 30px 20px !important; }
    
    .criteria-list li { grid-template-columns: 1fr; gap: 5px; }
    .stars { grid-column: 1; grid-row: 2; justify-self: start; margin-bottom: 5px; }
    .criteria-description { grid-column: 1; grid-row: 3; }
    
    .bottom-deck .dock { flex-direction: column; gap: 30px; align-items: center; text-align: center; }
    .footer-left { text-align: center; max-width: 100%; }
    .legal-links { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    #c-ban {
        flex-wrap: wrap;
        text-align: center;
        padding: 15px;
    }
    #c-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}