@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #3A3523;
    --panel: #30371E;
    --panel2: #2E351D;
    --text: #FEFFF0;
    --muted: rgba(254, 255, 240, 0.85);
    --muted-light: #F6F6D8;
    --line: rgba(254, 115, 12, 0.28);
    --accent: #F6F6D8;
    --accent2: #FE730C;
    --ok: #FE730C;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    --radius: 0px;
    --radius2: 0px;
    --max: 1400px;
    --rainbow: linear-gradient(135deg, #FE730C 0%, #FFB76C 50%, #F6F6D8 100%);
    --btn-glow: rgba(254, 115, 12, 0.35);
    --header-bg: rgba(36, 41, 22, 0.96);
    --card-overlay: linear-gradient(0deg, rgba(36, 41, 22, 0.95) 0%, rgba(36, 41, 22, 0.35) 50%, rgba(36, 41, 22, 0) 100%);
    --hover-lift: 0 14px 45px rgba(254, 115, 12, 0.22);
    --font-main: 'Manrope', system-ui, sans-serif;
    --font-head: 'Unbounded', system-ui, sans-serif;
    --jeans-1: #30371E;
    --jeans-2: #2E351D;
    --wrap-bg: #242916;
    --logo-white: #F6F6D8;
    --logo-orange: #FE730C;
    --heading: #FFB76C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 15px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, li { list-style: none; }

.wrap-hose-bang-stl {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.top-stripe {
    height: 3px;
    background: var(--rainbow);
    opacity: 0.9;
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max);
    margin: 0 auto;
    min-height: 76px;
    padding: 10px 20px;
    gap: 8px 18px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--jeans-1) 0%, var(--jeans-2) 100%);
    border: 1px solid rgba(254, 115, 12, 0.35);
    position: relative;
    transition: all 0.3s ease;
    order: 1;
}

.brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0 1px, transparent 1px 3px);
    pointer-events: none;
    opacity: 0.7;
}

.brand:hover {
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 1px var(--logo-orange), 0 8px 24px rgba(254, 115, 12, 0.25);
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: none;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    flex-shrink: 0;
}

nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    order: 2;
    min-width: 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    gap: 6px;
}

nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: 0;
    transition: color 0.25s ease, border-color 0.25s ease;
    position: relative;
    font-size: 12px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid var(--line);
    letter-spacing: 2px;
    font-family: var(--font-head);
    text-transform: uppercase;
    opacity: 0.7;
    overflow: hidden;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-orange);
    transition: width 0.35s ease;
}

nav a:hover {
    opacity: 1;
    border-color: var(--logo-orange);
    color: var(--heading);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    opacity: 1;
    font-weight: 700;
    border-color: var(--logo-orange);
    color: var(--heading);
}

nav a.active::after {
    width: 100%;
}

.menu-btn {
    display: none;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    font-size: 16px;
    line-height: 1;
    z-index: 100;
    order: 3;
}

.menu-btn:hover {
    border-color: var(--logo-orange);
    background: rgba(254, 115, 12, 0.08);
}

.menu-btn .menu-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text);
}

@media (max-width: 1100px) {
    nav {
        flex: 1 1 100%;
        justify-content: center;
        order: 4;
    }

    nav ul {
        justify-content: center;
        width: 100%;
    }

    nav a {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1.6px;
    }
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
        order: 2;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        flex: none;
        background: var(--wrap-bg);
        backdrop-filter: blur(10px);
        padding: 60px 18px 30px;
        flex-direction: column;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 1px solid var(--line);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        order: 0;
        justify-content: flex-start;
    }

    nav.show {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
        justify-content: flex-start;
    }

    nav a {
        display: block;
        padding: 12px 14px;
        background: transparent;
        border: 1px solid transparent;
        border-left: 2px solid transparent;
        border-radius: 0;
        color: var(--text);
        font-weight: 500;
        font-size: 13px;
        text-align: left;
        white-space: normal;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 1;
        width: 100%;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        border-color: var(--line);
        border-left-color: var(--logo-orange);
        background: rgba(254, 115, 12, 0.06);
        color: var(--heading);
    }

    nav a.active {
        border-color: var(--line);
        border-left-color: var(--logo-orange);
        background: rgba(254, 115, 12, 0.09);
        color: var(--heading);
    }

    .logo-img {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .topbar {
        min-height: 58px;
        padding: 8px 16px;
    }

    .logo-img {
        height: 34px;
    }

    nav a {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }
}

.hero {
    margin-top: 56px;
    padding: 20px 0 14px;
}

.hero-main-hose-bang-stl {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main-hose-bang-stl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    opacity: 0.9;
}

.hero-main-hose-bang-stl::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(254, 115, 12, 0.10), transparent 65%);
    pointer-events: none;
}

.hero-main-hose-bang-stl h1 {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    position: relative;
    color: var(--heading);
}

.hero-main-hose-bang-stl h1 em {
    font-weight: 400;
    font-style: normal;
    opacity: 0.55;
    letter-spacing: 2px;
    color: var(--logo-orange);
}

.hero-main-hose-bang-stl p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 15px;
    margin: 0;
    max-width: 95%;
    position: relative;
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.75;
}

.hero-side {
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 20px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    border-left: 3px solid var(--logo-orange);
    background: rgba(254, 115, 12, 0.06);
    color: var(--text);
    font-size: 14px;
    letter-spacing: 0.02em;
    font-family: var(--font-main);
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 26px;
    background: transparent;
    border: 1.5px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 2.5px;
    font-family: var(--font-head);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--logo-orange);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 1px var(--logo-orange), 0 8px 24px rgba(254, 115, 12, 0.25);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--logo-orange);
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
}

.btn-primary::before {
    background: var(--wrap-bg);
}

.btn-primary:hover {
    color: var(--logo-orange);
    border-color: var(--wrap-bg);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.btn-small {
    padding: 6px 16px;
    font-size: 10px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font-head);
    letter-spacing: 2px;
}

.btn-small:hover {
    background: var(--logo-orange);
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.25s ease;
    font-family: var(--font-head);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chip:hover {
    background: var(--logo-orange);
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
}

.chip::before {
    content: '◆';
    font-size: 7px;
    opacity: 0.6;
    color: var(--logo-orange);
}

.chip:hover::before {
    color: var(--wrap-bg);
}

.section {
    margin: 32px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 14px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--heading);
    letter-spacing: -0.01em;
    position: relative;
}

.section-header h2 em {
    font-weight: 400;
    font-style: normal;
    opacity: 0.6;
    letter-spacing: 2px;
    color: var(--logo-orange);
}

.section-header .sub {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 13px;
    margin: 5px 0 0;
    opacity: 0.55;
    letter-spacing: 0.03em;
    font-weight: 400;
    font-style: normal;
}

.grid {
    column-count: 4;
    column-gap: 16px;
    margin: 18px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.post:hover {
    border-color: var(--logo-orange);
    box-shadow: var(--hover-lift);
    transform: translateY(-3px);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(254, 115, 12, 0.04);
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.02);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 10px 12px;
    background: var(--card-overlay);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-hose-bang-stl {
    display: flex;
    justify-content: center;
}

.post-actions-hose-bang-stl .btn {
    background: rgba(36, 41, 22, 0.55);
    border: 1px solid var(--logo-orange);
    color: var(--heading);
    text-shadow: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    min-width: 90px;
    padding: 5px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
}

.post-actions-hose-bang-stl .btn::before {
    background: var(--logo-orange);
}

.post-actions-hose-bang-stl .btn:hover {
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
}

.post-actions-hose-bang-stl .btn:hover::before {
    left: 0;
}

.post-info {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 5px 10px;
    background: rgba(36, 41, 22, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    border-radius: 0;
    border: 1px solid var(--line);
    z-index: 2;
}

.post-title {
    font-family: var(--font-head);
    font-size: 11px;
    margin: 0;
    color: var(--heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.post-meta {
    font-family: var(--font-main);
    font-size: 12px;
    color: var(--text);
    margin: 0 0 10px;
    opacity: 0.55;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.section .article-hose-bang-stl {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 24px;
    margin: 26px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-hose-bang-stl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--rainbow);
    opacity: 0.9;
}

.section .article-hose-bang-stl:first-child {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .section .article-hose-bang-stl {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-hose-bang-stl h2 {
    font-family: var(--font-head);
    font-size: 20px;
    margin: 0 0 12px;
    color: var(--heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.article-hose-bang-stl h2 a {
    position: relative;
}

.article-hose-bang-stl h2 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-orange);
    transition: width 0.35s ease;
}

.article-hose-bang-stl h2 a:hover::after {
    width: 100%;
}

.article-hose-bang-stl h3 {
    font-family: var(--font-head);
    font-size: 15px;
    margin: 20px 0 10px;
    color: var(--heading);
    opacity: 0.85;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
}

.article-hose-bang-stl p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 15px;
    margin: 0 0 16px;
    line-height: 1.8;
    opacity: 0.8;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.article-hose-bang-stl a {
    position: relative;
    font-weight: 500;
    color: var(--heading);
}

.article-hose-bang-stl a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--logo-orange);
    transition: width 0.35s ease;
}

.article-hose-bang-stl a:hover::after {
    width: 100%;
}

.article-thumbs-hose-bang-stl {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.article-thumbs-hose-bang-stl:has(.article-thumb:nth-child(2):last-child) .article-thumb {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
}

.article-thumbs-hose-bang-stl:has(.article-thumb:nth-child(2):last-child) .article-thumb .post-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
}}

.article-thumb {
    flex: 0 0 135px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: 0;
    border: 1px solid var(--line);
}

.article-thumb .post-thumb img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 18px 0;
}

.card-pad {
    padding: 20px;
}

.title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    color: var(--heading);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-hose-bang-stl {
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-head);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pill-hose-bang-stl:hover {
    background: var(--logo-orange);
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 115, 12, 0.25);
}

footer {
    border-top: 1px solid var(--line);
    background: var(--wrap-bg);
    padding: 44px 20px 24px;
    margin-top: 44px;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rainbow);
    opacity: 0.9;
}

.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;
    max-width: var(--max);
    margin: 0 auto;
}

.footer-info {
    flex: 0 1 340px;
    order: 2;
    text-align: right;
    margin-left: auto;
}

.footer-info h3 {
    font-family: var(--font-head);
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--heading);
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: auto;
    width: 40px;
    height: 2px;
    background: var(--logo-orange);
    opacity: 0.9;
}

.footer-info p {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.65;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 12px;
    justify-content: flex-end;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 8px 14px;
    background: rgba(48, 55, 30, 0.6);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    transition: all 0.25s ease;
    min-width: 100px;
    text-align: left;
}

.footer-badge:hover {
    background: var(--logo-orange);
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
    transform: translateY(-2px);
}

.badge-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.badge-desc {
    font-family: var(--font-main);
    font-size: 11px;
    opacity: 0.5;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-badge:hover .badge-desc {
    opacity: 0.75;
}

.footer-link-hose-bang-stls {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    order: 1;
    align-items: flex-start;
}

.footer-col {
    min-width: 130px;
}

.footer-col h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--heading);
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--logo-orange);
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    font-family: var(--font-main);
    color: var(--text);
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-block;
    padding: 3px 0 3px 12px;
    border-bottom: none;
    border-left: 2px solid transparent;
    opacity: 0.6;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-col a:hover {
    opacity: 1;
    border-left-color: var(--logo-orange);
    padding-left: 16px;
    color: var(--heading);
}

.footer-stamp {
    margin-top: 22px;
    max-width: 125px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    margin-left: auto;
}

.footer-stamp:hover {
    opacity: 0.95;
    transform: scale(1.02);
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 1px var(--logo-orange), var(--hover-lift);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 12px;
    opacity: 0.5;
    font-family: var(--font-head);
    letter-spacing: 2.5px;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .grid { column-count: 3; }
}

@media (max-width: 1024px) {
    .grid { column-count: 2; }

    .section .article-hose-bang-stl {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-info {
        order: 1;
        text-align: left;
        margin-left: 0;
    }

    .footer-info h3::after {
        right: auto;
        left: 0;
    }

    .footer-badge-list {
        justify-content: flex-start;
    }

    .footer-stamp {
        margin-left: 0;
    }

    .footer-link-hose-bang-stls {
        order: 2;
        justify-content: flex-start;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero { margin-top: 56px; }

    .hero-main-hose-bang-stl {
        padding: 22px;
        max-width: 100%;
    }

    .hero-main-hose-bang-stl p {
        max-width: 100%;
        font-size: 14px;
    }

    .hero-main-hose-bang-stl h1 {
        font-size: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .article-hose-bang-stl {
        padding: 18px;
    }

    .article-hose-bang-stl p {
        font-size: 14px;
    }

    .grid {
        column-count: 2;
        column-gap: 12px;
    }

    .post-content {
        padding: 12px 8px 6px 8px;
    }

    .post-actions-hose-bang-stl .btn {
        padding: 4px 14px;
        font-size: 9px;
        min-width: 70px;
        letter-spacing: 1.5px;
    }

    .footer-link-hose-bang-stls {
        gap: 26px;
    }

    .links {
        gap: 6px;
    }

    .pill-hose-bang-stl {
        padding: 6px 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 640px) {
    .grid { column-count: 1; }

    .article-thumb {
        flex: 0 0 100%;
    }

    .title {
        font-size: 20px;
    }

    .card-pad {
        padding: 16px;
    }

    .footer-link-hose-bang-stls {
        gap: 22px;
    }

    .footer-badge-list {
        gap: 6px;
    }

    .footer-badge {
        min-width: 90px;
        padding: 6px 12px;
    }

    .badge-name {
        font-size: 11px;
    }

    .badge-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }

    .hero-main-hose-bang-stl {
        padding: 16px;
    }

    .hero-main-hose-bang-stl h1 {
        font-size: 22px;
    }

    .hero-side {
        padding: 16px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }

    .post-content {
        padding: 10px 6px 4px 6px;
    }

    .post-actions-hose-bang-stl .btn {
        padding: 3px 10px;
        font-size: 9px;
        min-width: 60px;
        letter-spacing: 1px;
    }

    .links {
        gap: 5px;
    }

    .pill-hose-bang-stl {
        padding: 5px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .footer-link-hose-bang-stls {
        flex-direction: column;
        gap: 18px;
    }

    .footer-badge-list {
        gap: 5px;
    }

    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--heading);
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.post .post-content .btn::before {
    display: none;
}

.post .post-content .btn:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
    color: var(--logo-orange);
    text-shadow: none;
}

.post .post-content .btn-primary {
    background: transparent;
    border: none;
    box-shadow: none;
}

.post .post-content .btn-primary:hover {
    background: transparent;
    border: none;
    box-shadow: none;
}

.post, .hero-main-hose-bang-stl, .hero-side, .card, .btn, .pill-hose-bang-stl, .footer-badge, .article-thumb .post-thumb {
    border-color: var(--line) !important;
}

.post:hover, .btn:hover, .pill-hose-bang-stl:hover, .footer-badge:hover {
    border-color: var(--ok) !important;
}

.grid-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.post-cat {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    aspect-ratio: 2/3;
}

.post-cat:hover {
    border-color: var(--logo-orange);
    box-shadow: var(--hover-lift);
    transform: translateY(-3px);
}

.post-thumb-cat {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(254, 115, 12, 0.04);
    overflow: hidden;
    position: relative;
}

.post-thumb-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.post-cat:hover .post-thumb-cat img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.02);
}

.post-content-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 12px 12px;
    background: var(--card-overlay);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-hose-bang-stl-cat {
    display: flex;
    justify-content: center;
}

.post-actions-hose-bang-stl-cat .btn {
    background: rgba(36, 41, 22, 0.55);
    border: 1px solid var(--logo-orange);
    color: var(--heading);
    text-shadow: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    min-width: 90px;
    padding: 5px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
}

.post-actions-hose-bang-stl-cat .btn::before {
    background: var(--logo-orange);
}

.post-actions-hose-bang-stl-cat .btn:hover {
    color: var(--wrap-bg);
    border-color: var(--logo-orange);
}

.post-actions-hose-bang-stl-cat .btn:hover::before {
    left: 0;
}

@media (max-width: 1200px) {
    .grid-cat {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .post-content-cat {
        padding: 12px 8px 8px 8px;
    }

    .post-actions-hose-bang-stl-cat .btn {
        padding: 4px 12px;
        font-size: 9px;
        min-width: 70px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .grid-cat {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .post-content-cat {
        padding: 10px 6px 6px 6px;
    }

    .post-actions-hose-bang-stl-cat .btn {
        padding: 3px 10px;
        font-size: 9px;
        min-width: 60px;
        letter-spacing: 1px;
    }
}


.hero-model-profile-new {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 20px 10px;
    width: 100%;
}

.model-profile-card {
    background: linear-gradient(135deg, var(--jeans-1) 0%, var(--jeans-2) 100%);
    border: 1px solid var(--line);
    border-left: 4px solid var(--logo-orange);
    padding: 22px 26px;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.model-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(254, 115, 12, 0.15), transparent 70%);
    pointer-events: none;
}

.model-profile-card h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-profile-card h3 i {
    color: var(--logo-orange);
    font-size: 18px;
}

.model-profile-card ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.model-profile-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px solid rgba(254, 115, 12, 0.12);
    letter-spacing: 0.3px;
    opacity: 0.85;
}

.model-profile-card li i {
    color: var(--logo-orange);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.model-profile-card .site-info {
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(36, 41, 22, 0.5);
    border-left: 3px solid var(--logo-orange);
    border-radius: 0;
}

.model-profile-card .site-info p {
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
    opacity: 0.75;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero-model-profile-new {
        padding: 14px 14px 8px;
    }

    .model-profile-card {
        padding: 16px 18px;
    }

    .model-profile-card h3 {
        font-size: 15px;
    }

    .model-profile-card ul {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .model-profile-card li {
        font-size: 12px;
    }

    .model-profile-card .site-info {
        padding: 10px 12px;
    }

    .model-profile-card .site-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .model-profile-card {
        padding: 14px 14px;
        border-left-width: 3px;
    }

    .model-profile-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .model-profile-card h3 i {
        font-size: 15px;
    }
}