:root {
    --font-main: "Manrope", sans-serif;
}

/* =====================================================
   КАТАЛОГ ИНСТРУМЕНТОВ
===================================================== */

.huts-tools-sections {
    padding: 86px 0 76px;
    background: #efede7;
}

.huts-tools-sections__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 60px;
    align-items: end;
    margin-bottom: 44px;
}

.huts-tools-sections__heading > span,
.huts-tools-list__header > div > span {
    color: #8a8882;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.huts-tools-sections__heading h2,
.huts-tools-list__header h2 {
    margin: 0;
    color: #171717;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.045em;
}

.huts-tools-sections__heading p {
    margin: 0;
    color: #68665f;
    font-size: 16px;
    line-height: 1.65;
}

.huts-tools-sections__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.huts-tools-section-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    color: #171717;
    background: #f8f6f1;
    border: 1px solid rgba(23, 23, 23, .09);
    border-radius: 18px;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.huts-tools-section-card:hover,
.huts-tools-section-card.is-active {
    color: #fff;
    background: #171717;
    transform: translateY(-4px);
}

.huts-tools-section-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(23, 23, 23, .12);
}

.huts-tools-section-card:hover .huts-tools-section-card__top,
.huts-tools-section-card.is-active .huts-tools-section-card__top {
    border-color: rgba(255, 255, 255, .2);
}

.huts-tools-section-card h3 {
    margin: 0;
    color: inherit;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.huts-tools-section-card__top span {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
}

.huts-tools-section-card p {
    margin: 22px 0 28px;
    color: #68665f;
    font-size: 14px;
    line-height: 1.65;
}

.huts-tools-section-card:hover p,
.huts-tools-section-card.is-active p {
    color: rgba(255, 255, 255, .65);
}

.huts-tools-section-card__link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
}

.huts-tools-list__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.huts-tools-list__header h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 52px);
}

.huts-tools-filter {
    max-width: 720px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.huts-tools-filter a {
    padding: 10px 16px;
    color: #68665f;
    background: #fff;
    border: 1px solid rgba(23, 23, 23, .1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.huts-tools-filter a:hover,
.huts-tools-filter a.is-active {
    color: #fff;
    background: #171717;
    border-color: #171717;
}

@media (max-width: 1020px) {
    .huts-tools-sections__heading {
        grid-template-columns: 1fr 1fr;
    }

    .huts-tools-sections__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .huts-tools-list__header {
        display: block;
    }

    .huts-tools-filter {
        max-width: none;
        justify-content: flex-start;
        margin-top: 26px;
    }
}

@media (max-width: 680px) {
    .huts-tools-sections {
        padding: 56px 0 50px;
    }

    .huts-tools-sections__heading {
        display: block;
        margin-bottom: 30px;
    }

    .huts-tools-sections__heading h2 {
        margin: 12px 0 18px;
        font-size: 38px;
    }

    .huts-tools-sections__grid {
        grid-template-columns: 1fr;
    }

    .huts-tools-section-card {
        min-height: 230px;
        padding: 24px 21px;
    }

    .huts-tools-list__header {
        margin-bottom: 30px;
    }

    .huts-tools-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -16px;
        padding-right: 16px;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .huts-tools-filter::-webkit-scrollbar {
        display: none;
    }

    .huts-tools-filter a {
        flex: 0 0 auto;
    }
}

body {
    font-family: var(--font-main) !important;
}

:root {
    --color-bg: #f7f4ee;
    --color-text: #181818;
    --color-muted: #6f6a61;
    --color-accent: #111111;
    --color-line: rgba(0, 0, 0, 0.12);

   --font-main: "Manrope", sans-serif;

    --container: 1440px;
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--huts-bg);
    color: var(--huts-text);
    font-family: "Manrope", sans-serif;
}

body{
    font-family: var(--font-main);
    font-size:18px;
    font-weight:400;
    line-height:1.65;
    color:#111;
}
a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 244, 238, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-nav__list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav__list a {
    font-size: 15px;
    color: var(--color-muted);
}

.site-header__cta {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--color-text);
    color: #fff;
    font-size: 14px;
}

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero__content {
    max-width: 960px;
}

.eyebrow {
    margin: 0 0 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
}

.hero h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(48px, 8vw, 118px);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

.hero p {
    max-width: 720px;
    margin: 32px 0 0;
    font-size: 22px;
    line-height: 1.45;
    color: var(--color-muted);
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 42px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
}

.btn--primary {
    background: var(--color-text);
    color: #fff;
}

.btn--secondary {
    border: 1px solid var(--color-line);
    color: var(--color-text);
}

.site-footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-line);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.site-footer p {
    color: var(--color-muted);
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .site-header__inner {
        height: 72px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero p {
        font-size: 18px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__inner {
        flex-direction: column;
    }
}

:root {
    --huts-bg: #f8f6f1;
    --huts-text: #080808;
    --huts-muted: #6f6f6f;
    --huts-line: rgba(0, 0, 0, 0.13);
    --huts-soft: rgba(0, 0, 0, 0.04);
    --huts-container: 1640px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--huts-bg);
    color: var(--huts-text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.huts-container {
    width: min(calc(100% - 64px), var(--huts-container));
    margin: 0 auto;
}

/* HEADER */

.huts-header {
    padding-top: 28px;
}

.huts-header__inner {
    height: 72px;
    display: grid;
    grid-template-columns: 220px 1fr 48px;
    align-items: center;
    border-bottom: 1px solid var(--huts-line);
}

.huts-logo {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.huts-nav {
    justify-self: center;
}

.huts-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.huts-menu-toggle,
.huts-nav__close,
.huts-menu-overlay {
    display: none;
}

.huts-nav__list {
    display: flex;
    align-items: center;
    gap: 58px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.huts-nav__list a {
    position: relative;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.huts-nav__list a:hover::after,
.huts-nav__list .current-menu-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 5px;
    height: 5px;
    background: var(--huts-text);
    border-radius: 50%;
    transform: translateX(-50%);
}

.huts-search {
    justify-self: end;
    width: 32px;
    height: 32px;
    border: 0;
    padding: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.huts-search::before {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    border: 2px solid var(--huts-text);
    border-radius: 50%;
    left: 2px;
    top: 2px;
}

.huts-search::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: var(--huts-text);
    transform: rotate(45deg);
    right: 3px;
    bottom: 7px;
}

/* HERO */

.huts-hero {
    padding: 78px 0 74px;
}

.huts-hero__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 120px;
    align-items: start;
}

.huts-hero__content {
    max-width: 980px;
    padding-top: 38px;
}

.huts-eyebrow {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--huts-muted);
}

.huts-hero h1 {
    margin: 0;
    max-width: 1060px;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.huts-hero h1 em {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.huts-hero__text {
    max-width: 570px;
    margin: 32px 0 0;
    font-size: 19px;
    line-height: 1.55;
    color: #272727;
}

.huts-btn {
    display: inline-flex;
    align-items: center;
    gap: 38px;
    margin-top: 38px;
    min-height: 56px;
    padding: 0 24px;
    background: #050505;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.huts-btn span {
    font-size: 24px;
    line-height: 1;
}

.huts-hero__side {
    padding-top: 54px;
}

.huts-hero__side h2 {
    margin: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--huts-line);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.huts-category-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.huts-category-list li + li {
    margin-top: 23px;
}

.huts-category-list a {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 17px;
    line-height: 1.2;
}

.huts-category-list span {
    color: var(--huts-muted);
}

/* ADAPTIVE */

@media (max-width: 1100px) {
    .huts-header__inner {
        grid-template-columns: 180px 1fr 40px;
    }

    .huts-nav__list {
        gap: 30px;
    }

    .huts-hero__grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .huts-hero__side {
        max-width: 520px;
        padding-top: 0;
    }
}

@media (max-width: 760px) {
    .huts-container {
        width: min(calc(100% - 32px), var(--huts-container));
    }

    .huts-header {
        padding-top: 16px;
    }

    .huts-header__inner {
        height: 64px;
        grid-template-columns: 1fr auto;
    }

    .huts-nav {
        display: block;
        position: fixed;
        z-index: 1002;
        top: 0;
        right: 0;
        width: min(86vw, 390px);
        height: 100dvh;
        padding: 100px 32px 40px;
        background: var(--huts-bg, #f4f2ed);
        overflow-y: auto;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform .35s ease, visibility .35s ease;
    }

    .huts-nav.is-open {
        visibility: visible;
        transform: translateX(0);
    }

    .huts-nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .huts-nav__list li {
        width: 100%;
        border-bottom: 1px solid var(--huts-line, #d8d5cf);
    }

    .huts-nav__list a,
    .huts-nav a {
        display: block;
        width: 100%;
        padding: 20px 0;
        font-size: 18px;
        line-height: 1.25;
    }

    .huts-nav__list a:hover::after,
    .huts-nav__list .current-menu-item a::after {
        display: none;
    }

    .huts-menu-toggle {
        display: flex;
        width: 34px;
        height: 34px;
        padding: 8px 5px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .huts-menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--huts-text, #191919);
    }

    .huts-nav__close {
        display: block;
        position: absolute;
        top: 28px;
        right: 27px;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .huts-nav__close span {
        position: absolute;
        top: 17px;
        left: 6px;
        width: 25px;
        height: 1px;
        background: var(--huts-text, #191919);
    }

    .huts-nav__close span:first-child { transform: rotate(45deg); }
    .huts-nav__close span:last-child { transform: rotate(-45deg); }

    .huts-menu-overlay {
        display: block;
        position: fixed;
        z-index: 1001;
        inset: 0;
        background: rgba(18, 18, 18, .42);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s ease;
    }

    .huts-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    body.huts-menu-open {
        overflow: hidden;
    }

    .huts-logo {
        font-size: 15px;
    }

    .huts-hero {
        padding: 54px 0 64px;
    }

    .huts-hero__content {
        padding-top: 0;
    }

    .huts-hero h1 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .huts-hero__text {
        font-size: 17px;
    }

    .huts-btn {
        width: 100%;
        justify-content: space-between;
    }

    .huts-category-list a {
        font-size: 16px;
    }
}
.huts-nav a{

    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;

}
.hero h1{

    font-size:76px;
    font-weight:500;
    line-height:1.02;
    letter-spacing:-0.055em;

}
.btn{

    font-weight:600;

}

/* ARTICLES */

.huts-articles {
    padding: 0 0 72px;
}

.huts-tabs {
    display: flex;
    align-items: center;
    gap: 46px;
    margin-bottom: 38px;
    overflow-x: auto;
    scrollbar-width: none;
}

.huts-tabs::-webkit-scrollbar {
    display: none;
}

.huts-tabs a {
    position: relative;
    flex: 0 0 auto;
    padding-bottom: 12px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--huts-text);
}

.huts-tabs a.is-active::after,
.huts-tabs a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 1px;
    background: var(--huts-text);
}

.huts-articles__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 88px;
    align-items: start;
}

.huts-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.huts-post-card {
    min-height: 360px;
    padding: 30px 28px 26px;
    border: 1px solid var(--huts-line);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.huts-post-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--huts-muted);
}

.huts-post-card__meta span + span {
    position: relative;
}

.huts-post-card__meta span + span::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--huts-muted);
    border-radius: 50%;
    transform: translateY(-50%);
}

.huts-post-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.huts-post-card p {
    margin: 24px 0 0;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--huts-text);
}

.huts-post-card > a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.huts-post-card > a span {
    font-size: 20px;
    font-weight: 400;
}

.huts-newsletter {
    margin-top: -38px;
    padding: 42px;
    border: 1px solid var(--huts-line);
    background: rgba(255, 255, 255, 0.16);
}

.huts-newsletter h3 {
    margin: 0;
    max-width: 260px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.huts-newsletter p {
    margin: 28px 0 0;
    max-width: 260px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--huts-muted);
}

.huts-newsletter__form {
    margin-top: 28px;
}

.huts-newsletter input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid var(--huts-line);
    background: transparent;
    border-radius: 0;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--huts-text);
    outline: none;
}

.huts-newsletter input::placeholder {
    color: var(--huts-muted);
}

.huts-newsletter button {
    width: 100%;
    height: 58px;
    margin-top: 18px;
    padding: 0 22px;
    border: 0;
    background: #050505;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.huts-newsletter button span {
    font-size: 24px;
    font-weight: 400;
}

/* ADAPTIVE ARTICLES */

@media (max-width: 1200px) {
    .huts-articles__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .huts-newsletter {
        margin-top: 0;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .huts-posts {
        grid-template-columns: 1fr;
    }

    .huts-post-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .huts-tabs {
        gap: 28px;
    }

    .huts-newsletter {
        padding: 28px;
    }
}

.huts-practice{
    margin:70px 0;
}

.practice-card{

    display:grid;
    grid-template-columns:42% 58%;

    min-height:220px;

    background:#f7f6f3;

    color:#111;

    text-decoration:none;

    overflow:hidden;

}

.practice-card__image{

    overflow:hidden;

}

.practice-card__image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.practice-card:hover img{

    transform:scale(1.03);

}

.practice-card__content{

    padding:42px 55px;

    display:flex;

    flex-direction:column;

    position:relative;

}

.practice-card__label{

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.12em;

    color:#8a8a8a;

    margin-bottom:25px;

}

.practice-card h2{

    font-size:42px;

    line-height:1.18;

    font-weight:400;

    letter-spacing:-.04em;

    max-width:520px;

    margin:0;

}

.practice-card__arrow{

    position:absolute;

    right:55px;

    bottom:55px;

    font-size:44px;

    transition:.3s;

}

.practice-card:hover .practice-card__arrow{

    transform:translateX(8px);

}
/* ==========================================
   PRACTICE CARD
========================================== */

.huts-practice{
    margin:70px 0;
}

.practice-card{

    display:grid;
    grid-template-columns:42% 58%;

    min-height:230px;

    background:#f1ede7;
    border:1px solid #e7e1d9;

    color:#111;

    text-decoration:none;

    overflow:hidden;

}

.practice-card__image{

    overflow:hidden;
    margin-right:-28px;
    z-index:1;

}

.practice-card__image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .6s ease;

}

.practice-card:hover .practice-card__image img{

    transform:scale(1.04);

}

.practice-card__content{

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:42px 60px;

}

.practice-card__label{

    margin-bottom:18px;

    font-size:11px;
    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.14em;

    color:#9a9186;

}

.practice-card h2{

    margin:0;

    max-width:520px;

    font-family:"Manrope",sans-serif;

    font-size:40px;

    font-weight:400;

    line-height:1.1;

    letter-spacing:-.05em;

    color:#111;

}

.practice-card__arrow{

    position:absolute;

    right:60px;

    top:50%;

    transform:translateY(-50%);

    font-size:52px;

    font-weight:300;

    color:#222;

    transition:transform .35s ease;

}

.practice-card:hover .practice-card__arrow{

    transform:translateY(-50%) translateX(10px);

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:1100px){

    .practice-card{

        grid-template-columns:1fr;

    }

    .practice-card__image{

        margin-right:0;

        height:280px;

    }

    .practice-card__content{

        padding:42px;

    }

    .practice-card__arrow{

        position:static;

        transform:none;

        margin-top:30px;

        align-self:flex-end;

    }

    .practice-card:hover .practice-card__arrow{

        transform:translateX(8px);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:700px){

    .practice-card__image{

        height:220px;

    }

    .practice-card__content{

        padding:28px;

    }

    .practice-card h2{

        font-size:34px;

    }

    .practice-card__arrow{

        font-size:40px;

    }

}

/* ==========================================
   FOOTER
========================================== */

.huts-footer{

    border-top:1px solid var(--huts-line);

    padding:34px 0;

    margin-top:90px;

}

.huts-footer__inner{

    display:grid;

    grid-template-columns:220px 1fr auto;

    align-items:center;

    gap:40px;

}

.huts-footer__logo{

    font-size:17px;

    font-weight:700;

    letter-spacing:.32em;

    text-transform:uppercase;

}

.huts-footer__nav{

    display:flex;

    justify-content:center;

    gap:56px;

}

.huts-footer__nav a{

    font-size:13px;

    line-height:1;

    color:#555;

    transition:.25s;

}

.huts-footer__nav a:hover{

    color:#111;

}

.huts-footer__social{

    display:flex;

    gap:18px;

}

.huts-footer__social a{

    width:22px;

    height:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111;

}

.huts-footer__social svg{

    width:18px;

    height:18px;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:900px){

    .huts-footer{

        padding:42px 0;

    }

    .huts-footer__inner{

        grid-template-columns:1fr;

        gap:30px;

        text-align:center;

    }

    .huts-footer__nav{

        flex-direction:column;

        gap:18px;

    }

    .huts-footer__social{

        justify-content:center;

    }

}
.huts-newsletter__response {
    width: 100%;
}

.huts-newsletter__message {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.huts-newsletter__message.is-error {
    color: #b42318;
}

.huts-newsletter__form button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.huts-newsletter__success {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
}

.huts-newsletter__success-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #222222;
    font-size: 18px;
    font-weight: 700;
}

.huts-newsletter__success strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
}

.huts-newsletter__success p {
    margin: 0;
    font-size: 14px;
}




/* =========================================================
   SINGLE POST — HUTS.PRO
========================================================= */

.huts-single {
    background: #f7f5f1;
    color: #171717;
    padding: 42px 0 100px;
}

.huts-single__container {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
}

.huts-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
    color: #8b857d;
    font-size: 12px;
    line-height: 1.5;
}

.huts-breadcrumbs a {
    color: #5e5a55;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-breadcrumbs a:hover {
    color: #111;
}

.huts-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 930px) minmax(280px, 350px);
    gap: clamp(48px, 6vw, 90px);
    align-items: start;
}

/* =========================================================
   HEADER
========================================================= */

.huts-article__header {
    margin-bottom: 30px;
}

.huts-article__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 24px;
    color: #847e76;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.huts-article__meta > * {
    position: relative;
}

.huts-article__meta > *:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c2b8ad;
    transform: translateY(-50%);
}

.huts-article__category {
    color: #8c6b52;
    text-decoration: none;
}

.huts-article__category:hover {
    color: #111;
}

.huts-article__title {
    max-width: 900px;
    margin: 0;
    color: #151515;
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.huts-article__lead {
    max-width: 780px;
    margin-top: 24px;
    color: #69645e;
    font-size: 18px;
    line-height: 1.6;
}

.huts-article__lead p {
    margin: 0;
}

/* =========================================================
   COVER
========================================================= */

.huts-article__cover {
    position: relative;
    overflow: hidden;
    margin: 0 0 42px;
    border-radius: 14px;
    background: #ebe7e0;
}

.huts-article__cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
}

/* =========================================================
   CONTENT
========================================================= */

.huts-article__content {
    color: #34312e;
    font-size: 16px;
    line-height: 1.78;
}

.huts-article__content > *:first-child {
    margin-top: 0;
}

.huts-article__content h2,
.huts-article__content h3,
.huts-article__content h4 {
    color: #171717;
    scroll-margin-top: 120px;
}

.huts-article__content h2 {
    margin: 58px 0 18px;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.huts-article__content h3 {
    margin: 34px 0 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.huts-article__content h4 {
    margin: 28px 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.huts-article__content p {
    margin: 0 0 20px;
}

.huts-article__content ul,
.huts-article__content ol {
    margin: 18px 0 26px;
    padding-left: 24px;
}

.huts-article__content li {
    margin-bottom: 9px;
    padding-left: 4px;
}

.huts-article__content li::marker {
    color: #a9907d;
}

.huts-article__content a {
    color: #765c49;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.huts-article__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
    border-radius: 10px;
}

.huts-article__content figure {
    margin: 34px 0;
}

.huts-article__content figcaption {
    margin-top: 10px;
    color: #8b857e;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.huts-article__content blockquote {
    position: relative;
    margin: 38px 0;
    padding: 28px 32px 28px 38px;
    border: 0;
    border-radius: 12px;
    background: #eee9e2;
    color: #24211f;
    font-size: 19px;
    line-height: 1.6;
}

.huts-article__content blockquote::before {
    content: "";
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 18px;
    width: 2px;
    border-radius: 10px;
    background: #9a806b;
}

.huts-article__content blockquote p:last-child {
    margin-bottom: 0;
}

.huts-article__content hr {
    width: 100%;
    height: 1px;
    margin: 52px 0;
    border: 0;
    background: #d8d2ca;
}

.huts-article__content table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.huts-article__content th,
.huts-article__content td {
    padding: 15px 18px;
    border: 1px solid #ded9d2;
    text-align: left;
}

.huts-article__content th {
    background: #ebe6df;
    color: #1e1d1b;
    font-weight: 600;
}

/* =========================================================
   SPECIAL CONTENT BLOCKS
========================================================= */

.huts-result-box {
    margin: 40px 0;
    padding: 32px;
    border: 1px solid #ddd6cd;
    border-radius: 14px;
    background: #f1ede7;
}

.huts-result-box__label {
    display: block;
    margin-bottom: 14px;
    color: #8a705c;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huts-result-box h3 {
    margin-top: 0;
}

.huts-result-box ul {
    margin-bottom: 0;
}

.huts-technology-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 34px;
    padding: 0 !important;
    list-style: none;
}

.huts-technology-list li {
    margin: 0 !important;
    padding: 10px 15px !important;
    border: 1px solid #d8d1c8;
    border-radius: 50px;
    background: #f2eee8;
    color: #393532;
    font-size: 13px;
    line-height: 1.2;
}

/* =========================================================
   TAGS AND AUTHOR
========================================================= */

.huts-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 54px;
    padding-top: 30px;
    border-top: 1px solid #d9d3cb;
}

.huts-article__tags a {
    padding: 9px 14px;
    border: 1px solid #d9d3cb;
    border-radius: 50px;
    color: #55504a;
    font-size: 12px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.huts-article__tags a:hover {
    border-color: #1c1c1c;
    background: #1c1c1c;
    color: #fff;
}

.huts-article__author {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-top: 44px;
    padding: 28px;
    border-radius: 14px;
    background: #eeebe5;
}

.huts-article__author-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.huts-article__author-label {
    display: block;
    margin-bottom: 4px;
    color: #8a847c;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.huts-article__author strong {
    display: block;
    margin-bottom: 6px;
    color: #1c1c1c;
    font-size: 17px;
}

.huts-article__author p {
    max-width: 580px;
    margin: 0;
    color: #6e6861;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   POST NAVIGATION
========================================================= */

.huts-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.huts-post-navigation__item {
    min-height: 140px;
    padding: 24px;
    border: 1px solid #dbd5ce;
    border-radius: 12px;
}

.huts-post-navigation__item--next {
    text-align: right;
}

.huts-post-navigation__item span {
    display: block;
    margin-bottom: 10px;
    color: #928b83;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.huts-post-navigation__item a {
    color: #24211f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.huts-post-navigation__item a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================================================
   SIDEBAR
========================================================= */

.huts-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.huts-sidebar-card {
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid rgba(206, 198, 189, 0.55);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.48);
}

.huts-sidebar-card__title {
    margin: 0 0 24px;
    color: #252321;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Categories */

.huts-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.huts-category-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: #7c756e;
    font-size: 12px;
}

.huts-category-list li + li {
    margin-top: 18px;
}

.huts-category-list a {
    flex: 1;
    color: #292623;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-category-list a:hover {
    color: #8d705b;
}

.huts-category-list li {
    counter-reset: none;
}

.huts-category-list .cat-item {
    position: relative;
}

.huts-category-list .cat-item::after {
    content: attr(data-count);
}

.huts-category-list li {
    font-size: 0;
}

.huts-category-list li a {
    font-size: 14px;
}

.huts-category-list li {
    display: flex;
    justify-content: space-between;
}

.huts-category-list li > a + * {
    font-size: 12px;
}

.huts-category-list li {
    color: #7c756e;
}

/* WordPress puts count as plain text */
.huts-category-list li {
    line-height: 1.4;
}

/* TOC */

.huts-article-toc {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 18px;
}

.huts-article-toc::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 3px;
    width: 1px;
    background: #d8d0c7;
}

.huts-article-toc__link {
    position: relative;
    padding: 10px 0;
    color: #4b4742;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-article-toc__link::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -18px;
    width: 7px;
    height: 7px;
    border: 2px solid #ded6cd;
    border-radius: 50%;
    background: #f7f5f1;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.huts-article-toc__link:hover,
.huts-article-toc__link.is-active {
    color: #8a6e58;
}

.huts-article-toc__link.is-active::before {
    border-color: #91745e;
    background: #91745e;
}

/* Recent posts */

.huts-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.huts-recent-post {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
}

.huts-recent-post__image {
    display: block;
    overflow: hidden;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    background: #e8e3dc;
}

.huts-recent-post__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.huts-recent-post:hover .huts-recent-post__image img {
    transform: scale(1.05);
}

.huts-recent-post__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #7a7169;
    font-weight: 600;
}

.huts-recent-post__content h3 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.huts-recent-post__content h3 a {
    color: #252220;
    text-decoration: none;
}

.huts-recent-post__content h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.huts-recent-post__content time {
    color: #9a938b;
    font-size: 11px;
}

.huts-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 11px 16px;
    border: 1px solid #d6cec5;
    border-radius: 8px;
    color: #272421;
    font-size: 12px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.huts-sidebar-link:hover {
    border-color: #202020;
    background: #202020;
    color: #fff;
}

/* CTA */

.huts-sidebar-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(90px, 0.75fr);
    min-height: 300px;
    overflow: hidden;
    border-radius: 14px;
    background: #e8e0d5;
}

.huts-sidebar-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 12px 28px 28px;
}

.huts-sidebar-cta__eyebrow {
    margin-bottom: 20px;
    color: #7f6957;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huts-sidebar-cta h2 {
    margin: 0 0 14px;
    color: #1e1c1a;
    font-size: 25px;
    line-height: 1.1;
}

.huts-sidebar-cta p {
    margin: 0 0 24px;
    color: #5f5953;
    font-size: 13px;
    line-height: 1.55;
}

.huts-sidebar-cta a {
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 6px;
    background: #1d1d1d;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.huts-sidebar-cta a:hover {
    opacity: 0.78;
}

.huts-sidebar-cta__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 26px 8px;
    background:
        linear-gradient(
            180deg,
            rgba(237, 231, 221, 0.15),
            rgba(157, 137, 117, 0.32)
        ),
        radial-gradient(
            circle at 30% 20%,
            #f5f1eb 0,
            #d7c9b8 46%,
            #a99a88 100%
        );
}

.huts-sidebar-cta__visual::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 1px;
    height: 180px;
    background: rgba(59, 49, 41, 0.36);
    transform: rotate(-9deg);
}

.huts-sidebar-cta__visual::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 36%;
    width: 86px;
    height: 1px;
    background: rgba(59, 49, 41, 0.28);
    box-shadow:
        -19px 30px 0 rgba(59, 49, 41, 0.22),
        14px 65px 0 rgba(59, 49, 41, 0.21),
        -16px 97px 0 rgba(59, 49, 41, 0.18);
    transform: rotate(-34deg);
}

.huts-sidebar-cta__visual span {
    position: relative;
    z-index: 2;
    color: rgba(39, 33, 28, 0.65);
    font-size: 11px;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
}

/* =========================================================
   RESPONSIVE
========================================================= */


@media (max-width: 960px) {

    .huts-single {
        padding-top: 28px;
    }

    .huts-single__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .huts-sidebar-sticky {
        position: static;
    }

    .huts-single-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .huts-sidebar-sticky {
        display: contents;
    }

    .huts-sidebar-card,
    .huts-sidebar-cta {
        margin: 0;
    }

    .huts-sidebar-card--toc {
        grid-row: span 2;
    }

}

@media (max-width: 700px) {

    .huts-single {
        padding: 22px 0 70px;
    }

    .huts-single__container {
        width: min(100% - 28px, 1420px);
    }

    .huts-breadcrumbs {
        margin-bottom: 26px;
        font-size: 11px;
    }

    .huts-article__meta {
        gap: 10px 18px;
        margin-bottom: 18px;
    }

    .huts-article__title {
        font-size: 35px;
        line-height: 1.08;
    }

    .huts-article__lead {
        margin-top: 18px;
        font-size: 16px;
    }

    .huts-article__cover {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .huts-article__content {
        font-size: 15px;
        line-height: 1.72;
    }

    .huts-article__content h2 {
        margin-top: 44px;
        font-size: 28px;
    }

    .huts-article__content h3 {
        font-size: 20px;
    }

    .huts-article__content blockquote {
        padding: 24px 22px 24px 32px;
        font-size: 17px;
    }

    .huts-post-navigation {
        grid-template-columns: 1fr;
    }

    .huts-post-navigation__item--next {
        text-align: left;
    }

    .huts-single-sidebar {
        grid-template-columns: 1fr;
    }

    .huts-sidebar-card--toc {
        grid-row: auto;
    }

    .huts-sidebar-cta {
        min-height: 270px;
    }

}

@media (max-width: 450px) {

    .huts-article__title {
        font-size: 31px;
    }

    .huts-sidebar-card {
        padding: 24px 20px;
    }

    .huts-sidebar-cta {
        grid-template-columns: minmax(0, 1fr) 90px;
    }

    .huts-sidebar-cta__content {
        padding: 24px 8px 24px 20px;
    }

    .huts-sidebar-cta h2 {
        font-size: 22px;
    }

}
.huts-category-list__count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border-radius: 50px;
    background: #e9e3dc;
    color: #706860;
    font-size: 11px;
}

/* =========================================================
   SINGLE POST LAYOUT
========================================================= */

.huts-single {
    position: relative;
    overflow: visible !important;
}

.huts-single__container {
    position: relative;
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    overflow: visible !important;
}

.huts-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 930px) minmax(280px, 350px);
    gap: clamp(48px, 6vw, 90px);
    align-items: start;
    overflow: visible !important;
}

/* Левая колонка со статьёй */

.huts-article {
    min-width: 0;
}

/* Правая колонка */

.huts-single-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    height: fit-content;
    min-width: 0;
    overflow: visible;
    z-index: 10;
}

/* Внутренняя обёртка сайдбара */

.huts-sidebar-sticky {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
    max-height: none;
    overflow: visible;
}

/* Убираем лишние отступы между карточками,
   так как расстояние задаётся через gap */

.huts-sidebar-card {
    margin: 0;
}

.huts-sidebar-cta {
    margin: 0;
}

/* =========================================================
   SIDEBAR CARDS
========================================================= */

.huts-sidebar-card {
    padding: 28px;
    border: 1px solid rgba(206, 198, 189, 0.7);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.48);
}

.huts-sidebar-card__title {
    margin: 0 0 24px;
    color: #252321;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================================================
   CATEGORIES
========================================================= */

.huts-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.huts-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.huts-category-list li + li {
    margin-top: 18px;
}

.huts-category-list a {
    flex: 1;
    color: #292623;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-category-list a:hover {
    color: #8d705b;
}

.huts-category-list__count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border-radius: 50px;
    background: #e9e3dc;
    color: #706860;
    font-size: 11px;
    line-height: 1;
}

/* =========================================================
   TABLE OF CONTENTS
========================================================= */

.huts-article-toc {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 18px;
}

.huts-article-toc::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 3px;
    width: 1px;
    background: #d8d0c7;
}

.huts-article-toc__link {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #69635d;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-article-toc__link::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -18px;
    width: 7px;
    height: 7px;
    border: 2px solid #ded6cd;
    border-radius: 50%;
    background: #f7f5f1;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.huts-article-toc__link:hover {
    color: #8a6e58;
}

.huts-article-toc__link.is-active {
    color: #9a785f;
}

.huts-article-toc__link.is-active::before {
    border-color: #91745e;
    background: #91745e;
}

/* =========================================================
   RECENT POSTS
========================================================= */

.huts-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.huts-recent-post {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
}

.huts-recent-post__image {
    display: block;
    overflow: hidden;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    background: #e8e3dc;
}

.huts-recent-post__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.huts-recent-post:hover .huts-recent-post__image img {
    transform: scale(1.05);
}

.huts-recent-post__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #7a7169;
    font-size: 20px;
    font-weight: 600;
}

.huts-recent-post__content {
    min-width: 0;
}

.huts-recent-post__content h3 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.huts-recent-post__content h3 a {
    color: #252220;
    text-decoration: none;
}

.huts-recent-post__content h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.huts-recent-post__content time {
    color: #9a938b;
    font-size: 11px;
}

.huts-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 11px 16px;
    border: 1px solid #d6cec5;
    border-radius: 8px;
    color: #272421;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.huts-sidebar-link:hover {
    border-color: #202020;
    background: #202020;
    color: #fff;
}

/* =========================================================
   CTA BLOCK
========================================================= */

.huts-sidebar-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(90px, 0.75fr);
    min-height: 300px;
    overflow: hidden;
    border-radius: 14px;
    background: #e8e0d5;
}

.huts-sidebar-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 28px 12px 28px 28px;
}

.huts-sidebar-cta__eyebrow {
    margin-bottom: 20px;
    color: #7f6957;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huts-sidebar-cta h2 {
    margin: 0 0 14px;
    color: #1e1c1a;
    font-size: 25px;
    line-height: 1.1;
}

.huts-sidebar-cta p {
    margin: 0 0 24px;
    color: #5f5953;
    font-size: 13px;
    line-height: 1.55;
}

.huts-sidebar-cta a {
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 6px;
    background: #1d1d1d;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.huts-sidebar-cta a:hover {
    opacity: 0.78;
}

.huts-sidebar-cta__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 26px 8px;
    background:
        linear-gradient(
            180deg,
            rgba(237, 231, 221, 0.15),
            rgba(157, 137, 117, 0.32)
        ),
        radial-gradient(
            circle at 30% 20%,
            #f5f1eb 0,
            #d7c9b8 46%,
            #a99a88 100%
        );
}

.huts-sidebar-cta__visual::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 1px;
    height: 180px;
    background: rgba(59, 49, 41, 0.36);
    transform: rotate(-9deg);
}

.huts-sidebar-cta__visual::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 36%;
    width: 86px;
    height: 1px;
    background: rgba(59, 49, 41, 0.28);
    box-shadow:
        -19px 30px 0 rgba(59, 49, 41, 0.22),
        14px 65px 0 rgba(59, 49, 41, 0.21),
        -16px 97px 0 rgba(59, 49, 41, 0.18);
    transform: rotate(-34deg);
}

.huts-sidebar-cta__visual span {
    position: relative;
    z-index: 2;
    color: rgba(39, 33, 28, 0.65);
    font-size: 11px;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
}

/* =========================================================
   TABLET
========================================================= */



/* =========================================================
   MOBILE / TABLET PORTRAIT
========================================================= */

@media (max-width: 960px) {

    .huts-single__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .huts-single-sidebar {
        position: static;
        top: auto;
        height: auto;
        z-index: auto;
    }

    .huts-sidebar-sticky {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .huts-sidebar-card--toc {
        grid-row: span 2;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .huts-single__container {
        width: min(100% - 28px, 1420px);
    }

    .huts-sidebar-sticky {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .huts-sidebar-card--toc {
        grid-row: auto;
    }

    .huts-sidebar-card {
        padding: 24px 20px;
    }

    .huts-sidebar-cta {
        grid-template-columns: minmax(0, 1fr) 90px;
        min-height: 270px;
    }

    .huts-sidebar-cta__content {
        padding: 24px 8px 24px 20px;
    }

    .huts-sidebar-cta h2 {
        font-size: 22px;
    }

}
.huts-category-list li.is-current a {
    color: #9a785f;
    font-weight: 600;
}

.huts-category-list li.is-current .huts-category-list__count {
    background: #b49a84;
    color: #ffffff;
}

/* ======================================================
   CONTACTS PAGE
====================================================== */

.huts-contacts {
    --contacts-dark: #171916;
    --contacts-text: #252824;
    --contacts-muted: #6d716a;
    --contacts-bg: #f8f6f1;
    --contacts-card: #ffffff;
    --contacts-line: rgba(23, 25, 22, 0.12);
    --contacts-accent: #c8ff45;

    background: var(--contacts-bg);
    color: var(--contacts-text);
}

.huts-container {
    width: min(100% - 40px, 1440px);
    margin: 0 auto;
}


/* HERO */

.huts-contacts__hero {
    padding: 120px 0 80px;
    background: var(--contacts-dark);
    color: #fff;
}

.huts-contacts__label {
    display: inline-flex;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--contacts-accent);
}

.huts-contacts__hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.huts-contacts__intro {
    max-width: 720px;
    margin: 42px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
}


/* MAIN */

.huts-contacts__main {
    padding: 100px 0 130px;
}

.huts-contacts__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.huts-contacts__info {
    display: grid;
    gap: 20px;
}


/* CONTACT CARDS */

.huts-contact-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 30px;
    padding: 42px;
    background: var(--contacts-card);
    border: 1px solid var(--contacts-line);
    border-radius: 24px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.huts-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(23, 25, 22, 0.08);
}

.huts-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--contacts-accent);
}

.huts-contact-card__icon svg {
    width: 30px;
    height: 30px;
    fill: var(--contacts-dark);
}

.huts-contact-card__content {
    min-width: 0;
}

.huts-contact-card__caption {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--contacts-muted);
}

.huts-contact-card__content > a {
    display: inline-block;
    color: var(--contacts-text);
    font-size: clamp(27px, 3.3vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.045em;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: opacity 0.2s ease;
}

.huts-contact-card__content > a:hover {
    opacity: 0.58;
}

.huts-contact-card__content p {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--contacts-muted);
    font-size: 16px;
    line-height: 1.65;
}


/* RIGHT PANEL */

.huts-contacts__aside {
    min-height: 100%;
}

.huts-contacts__panel {
    position: sticky;
    top: 110px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 50px;
    overflow: hidden;
    background: var(--contacts-dark);
    border-radius: 24px;
    color: #fff;
}

.huts-contacts__panel::before {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(200, 255, 69, 0.3);
    border-radius: 50%;
}

.huts-contacts__panel::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--contacts-accent);
}

.huts-contacts__panel > * {
    position: relative;
    z-index: 2;
}

.huts-contacts__panel-label {
    display: block;
    margin-bottom: 80px;
    color: var(--contacts-accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
}

.huts-contacts__panel h2 {
    max-width: 580px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.huts-contacts__panel p {
    max-width: 540px;
    margin: 30px 0 60px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.65;
}

.huts-contacts__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 310px;
    margin-top: auto;
    padding: 19px 22px;
    border-radius: 100px;
    background: #fff;
    color: var(--contacts-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.huts-contacts__button span {
    font-size: 22px;
    line-height: 1;
}

.huts-contacts__button:hover {
    background: var(--contacts-accent);
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 1050px) {

    .huts-contacts__hero {
        padding: 100px 0 70px;
    }

    .huts-contacts__main {
        padding: 70px 0 100px;
    }

    .huts-contacts__grid {
        grid-template-columns: 1fr;
    }

    .huts-contacts__panel {
        position: relative;
        top: auto;
        min-height: 580px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .huts-container {
        width: min(100% - 28px, 1440px);
    }

    .huts-contacts__hero {
        padding: 76px 0 58px;
    }

    .huts-contacts__label {
        margin-bottom: 22px;
    }

    .huts-contacts__hero h1 {
        font-size: 52px;
        line-height: 0.98;
    }

    .huts-contacts__intro {
        margin-top: 28px;
        font-size: 17px;
    }

    .huts-contacts__main {
        padding: 40px 0 70px;
    }

    .huts-contact-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
        border-radius: 18px;
    }

    .huts-contact-card__icon {
        width: 58px;
        height: 58px;
    }

    .huts-contact-card__icon svg {
        width: 25px;
        height: 25px;
    }

    .huts-contact-card__content > a {
        font-size: 29px;
    }

    .huts-contact-card__content p {
        margin-top: 17px;
        font-size: 15px;
    }

    .huts-contacts__panel {
        min-height: 550px;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .huts-contacts__panel-label {
        margin-bottom: 60px;
    }

    .huts-contacts__panel h2 {
        font-size: 40px;
    }

    .huts-contacts__panel p {
        margin: 24px 0 50px;
        font-size: 15px;
    }

    .huts-contacts__button {
        max-width: 100%;
    }

}

/* =========================================================
   HUTS.PRO — ABOUT PAGE
========================================================= */

.huts-about {
    --about-dark: #181a17;
    --about-black: #111310;
    --about-text: #20231f;
    --about-muted: #70746c;
    --about-light: #f2f1ec;
    --about-white: #ffffff;
    --about-accent: #c8ff45;
    --about-line: rgba(26, 29, 24, 0.14);
    --about-line-light: rgba(255, 255, 255, 0.15);

    overflow: hidden;
    background: var(--about-light);
    color: var(--about-text);
}

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

.about-container {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
}

.huts-about h1,
.huts-about h2,
.huts-about h3,
.huts-about p {
    margin-top: 0;
}

.huts-about a {
    text-decoration: none;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.about-section-heading {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-bottom: 70px;
    padding-top: 24px;
    border-top: 1px solid var(--about-line);
}

.about-section-heading--light {
    border-color: var(--about-line-light);
}

.about-section-heading__number,
.about-section-heading__label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-section-heading__number {
    color: var(--about-muted);
}

.about-section-heading__label {
    color: var(--about-text);
}

.about-section-heading--light .about-section-heading__number {
    color: rgba(255, 255, 255, 0.42);
}

.about-section-heading--light .about-section-heading__label {
    color: #fff;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.about-btn span {
    font-size: 20px;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-btn--light {
    background: #fff;
    color: var(--about-dark);
}

.about-btn--light:hover {
    background: var(--about-accent);
    color: var(--about-dark);
}

.about-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.about-btn--outline:hover {
    border-color: var(--about-accent);
    color: var(--about-accent);
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 55px 0 38px;
    overflow: hidden;
    background: var(--about-dark);
    color: #fff;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -280px;
    right: -180px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(200, 255, 69, 0.18);
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: -100px;
    right: 40px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(200, 255, 69, 0.1);
    border-radius: 50%;
}

.about-hero .about-container {
    position: relative;
    z-index: 2;
}

.about-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.about-eyebrow,
.about-hero__number {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-eyebrow {
    color: var(--about-accent);
}

.about-hero__number {
    color: rgba(255, 255, 255, 0.36);
}

.about-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 70px;
    align-items: end;
}

.about-hero h1 {
    max-width: 1100px;
    margin-bottom: 0;
    font-size: clamp(66px, 8.5vw, 148px);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.065em;
}

.about-hero h1 span {
    color: var(--about-accent);
}

.about-hero__aside {
    padding-bottom: 12px;
}

.about-hero__aside p {
    max-width: 440px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    line-height: 1.6;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero__line {
    margin-top: 85px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
}

.about-hero__footer span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    padding: 130px 0 150px;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 100px;
}

.about-intro__title h2 {
    max-width: 700px;
    margin-bottom: 0;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.about-intro__text {
    padding-top: 10px;
}

.about-intro__text p {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--about-muted);
    font-size: 18px;
    line-height: 1.7;
}

.about-intro__text .about-intro__lead {
    margin-bottom: 32px;
    color: var(--about-text);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.32;
    letter-spacing: -0.025em;
}

.about-formula {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 0.65fr;
    gap: 16px;
    align-items: center;
    margin-top: 100px;
}

.about-formula__item {
    display: flex;
    min-height: 190px;
    align-items: flex-end;
    padding: 28px;
    border: 1px solid var(--about-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.38);
}

.about-formula__item span {
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.about-formula__item--accent {
    background: var(--about-accent);
    border-color: var(--about-accent);
}

.about-formula__sign {
    color: var(--about-muted);
    font-size: 40px;
    font-weight: 300;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.about-principles {
    padding: 120px 0 135px;
    background: var(--about-dark);
    color: #fff;
}

.about-principles__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
}

.about-principles__heading h2 {
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.about-principles__heading p {
    max-width: 480px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 18px;
    line-height: 1.65;
}

.about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--about-line-light);
    border-bottom: 1px solid var(--about-line-light);
}

.about-principle-card {
    min-height: 440px;
    padding: 35px 36px 42px;
    border-right: 1px solid var(--about-line-light);
}

.about-principle-card:last-child {
    border-right: 0;
}

.about-principle-card__number {
    display: block;
    margin-bottom: 120px;
    color: var(--about-accent);
    font-size: 13px;
    font-weight: 700;
}

.about-principle-card h3 {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-principle-card p {
    max-width: 360px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   PROCESS
========================================================= */

.about-process {
    padding: 130px 0 150px;
}

.about-process__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 100px;
    align-items: end;
    margin-bottom: 90px;
}

.about-process__header h2 {
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.about-process__header p {
    max-width: 480px;
    margin-bottom: 5px;
    color: var(--about-muted);
    font-size: 18px;
    line-height: 1.65;
}

.about-process__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--about-line);
    border-left: 1px solid var(--about-line);
}

.about-process-item {
    min-height: 340px;
    padding: 30px;
    border-right: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
}

.about-process-item__number {
    display: block;
    margin-bottom: 90px;
    color: var(--about-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.about-process-item h3 {
    margin-bottom: 18px;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-process-item p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   DIRECTIONS
========================================================= */

.about-directions {
    padding: 120px 0 140px;
    background: var(--about-black);
    color: #fff;
}

.about-directions__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
}

.about-directions__header h2 {
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.about-directions__header p {
    max-width: 480px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 18px;
    line-height: 1.65;
}

.about-directions__list {
    border-top: 1px solid var(--about-line-light);
}

.about-direction-item {
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    gap: 24px;
    align-items: center;
    min-height: 120px;
    border-bottom: 1px solid var(--about-line-light);
    color: #fff;
    transition:
        padding 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.about-direction-item:hover {
    padding-right: 24px;
    padding-left: 24px;
    background: var(--about-accent);
    color: var(--about-dark);
}

.about-direction-item__number {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 700;
}

.about-direction-item:hover .about-direction-item__number {
    color: rgba(24, 26, 23, 0.5);
}

.about-direction-item h3 {
    margin-bottom: 0;
    font-size: clamp(27px, 3.5vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.about-direction-item__arrow {
    justify-self: end;
    font-size: 32px;
    font-weight: 300;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy {
    padding: 130px 0 150px;
}

.about-philosophy__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 100px;
}

.about-philosophy__quote {
    position: relative;
    min-height: 510px;
    padding: 42px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--about-accent);
}

.about-philosophy__quote::after {
    content: "“";
    position: absolute;
    right: 15px;
    bottom: -125px;
    color: rgba(24, 26, 23, 0.12);
    font-size: 390px;
    font-family: Georgia, serif;
    line-height: 1;
}

.about-philosophy__quote p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-bottom: 0;
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-philosophy__text {
    padding-top: 10px;
}

.about-philosophy__text p {
    max-width: 700px;
    margin-bottom: 26px;
    color: var(--about-muted);
    font-size: 18px;
    line-height: 1.7;
}

.about-philosophy__text .about-philosophy__lead {
    color: var(--about-text);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.32;
    letter-spacing: -0.03em;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    padding: 0 0 150px;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--about-line);
    border-left: 1px solid var(--about-line);
}

.about-stat {
    min-height: 260px;
    padding: 30px;
    border-right: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
}

.about-stat strong {
    display: block;
    margin-bottom: 80px;
    font-size: clamp(55px, 6vw, 94px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.about-stat span {
    display: block;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   FIT
========================================================= */

.about-fit {
    padding: 120px 0 150px;
    background: #e7e6df;
}

.about-fit__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
}

.about-fit__header h2 {
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.about-fit__header p {
    max-width: 480px;
    margin-bottom: 5px;
    color: var(--about-muted);
    font-size: 18px;
    line-height: 1.65;
}

.about-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-fit-card {
    min-height: 500px;
    padding: 42px;
    border-radius: 24px;
}

.about-fit-card--positive {
    background: var(--about-dark);
    color: #fff;
}

.about-fit-card--negative {
    border: 1px solid rgba(24, 26, 23, 0.17);
    background: rgba(255, 255, 255, 0.35);
    color: var(--about-text);
}

.about-fit-card__label {
    display: block;
    margin-bottom: 70px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-fit-card--positive .about-fit-card__label {
    color: var(--about-accent);
}

.about-fit-card--negative .about-fit-card__label {
    color: var(--about-muted);
}

.about-fit-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-fit-card li {
    position: relative;
    padding: 20px 0 20px 42px;
    border-bottom: 1px solid currentColor;
    font-size: clamp(19px, 2vw, 27px);
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.about-fit-card--positive li {
    border-color: rgba(255, 255, 255, 0.14);
}

.about-fit-card--negative li {
    border-color: var(--about-line);
}

.about-fit-card li::before {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 20px;
}

.about-fit-card--positive li::before {
    content: "✓";
    color: var(--about-accent);
}

.about-fit-card--negative li::before {
    content: "×";
    color: var(--about-muted);
}


/* =========================================================
   FINAL
========================================================= */

.about-final {
    padding: 22px;
    background: #f8f6f1;
}

.about-final__inner {
    position: relative;
    min-height: 760px;
    padding: 70px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--about-dark);
    color: #fff;
}

.about-final__inner::before {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -230px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: var(--about-accent);
}

.about-final__inner::after {
    content: "";
    position: absolute;
    right: 120px;
    bottom: 70px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.about-final__inner > * {
    position: relative;
    z-index: 2;
}

.about-final__label {
    display: block;
    margin-bottom: 90px;
    color: var(--about-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.about-final h2 {
    max-width: 1100px;
    margin-bottom: 35px;
    font-size: clamp(58px, 8vw, 125px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.about-final p {
    max-width: 600px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 19px;
    line-height: 1.6;
}

.about-final__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 35px;
    margin-bottom: 38px;
}

.about-final__contacts a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.about-final__contacts a:hover {
    color: var(--about-accent);
}

.about-final__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-width: 300px;
    padding: 19px 24px;
    border-radius: 100px;
    background: #fff;
    color: var(--about-dark);
    font-size: 15px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.about-final__button span {
    font-size: 22px;
}

.about-final__button:hover {
    background: var(--about-accent);
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .about-hero {
        min-height: auto;
        padding-bottom: 45px;
    }

    .about-hero__content,
    .about-intro__grid,
    .about-principles__heading,
    .about-process__header,
    .about-directions__header,
    .about-philosophy__grid,
    .about-fit__header {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-hero__aside {
        max-width: 650px;
    }

    .about-formula {
        grid-template-columns: 1fr;
    }

    .about-formula__sign {
        display: none;
    }

    .about-formula__item {
        min-height: 140px;
    }

    .about-principles__grid,
    .about-process__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-principle-card:nth-child(2) {
        border-right: 0;
    }

    .about-principle-card:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--about-line-light);
    }

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

    .about-final__inner {
        min-height: 700px;
        padding: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-container {
        width: min(100% - 28px, 1480px);
    }

    .about-section-heading {
        grid-template-columns: 50px 1fr;
        margin-bottom: 45px;
    }

    .about-hero {
        padding: 36px 0 30px;
    }

    .about-hero__top {
        margin-bottom: 60px;
    }

    .about-hero h1 {
        font-size: 57px;
        line-height: 0.89;
    }

    .about-hero__aside p {
        font-size: 16px;
    }

    .about-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-btn {
        width: 100%;
    }

    .about-hero__line {
        margin-top: 55px;
    }

    .about-hero__footer {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px 24px;
    }

    .about-intro,
    .about-process,
    .about-philosophy {
        padding: 85px 0;
    }

    .about-principles,
    .about-directions,
    .about-fit {
        padding: 85px 0;
    }

    .about-intro__title h2,
    .about-principles__heading h2,
    .about-process__header h2,
    .about-directions__header h2,
    .about-fit__header h2 {
        font-size: 50px;
    }

    .about-intro__text .about-intro__lead,
    .about-philosophy__text .about-philosophy__lead {
        font-size: 25px;
    }

    .about-formula {
        margin-top: 55px;
    }

    .about-formula__item {
        min-height: 110px;
        padding: 22px;
        border-radius: 17px;
    }

    .about-principles__grid,
    .about-process__list,
    .about-stats__grid,
    .about-fit__grid {
        grid-template-columns: 1fr;
    }

    .about-principle-card,
    .about-principle-card:last-child {
        grid-column: auto;
        min-height: 350px;
        border-right: 0;
        border-bottom: 1px solid var(--about-line-light);
    }

    .about-principle-card__number {
        margin-bottom: 75px;
    }

    .about-process-item {
        min-height: 280px;
    }

    .about-process-item__number {
        margin-bottom: 65px;
    }

    .about-direction-item {
        grid-template-columns: 48px 1fr 30px;
        gap: 15px;
        min-height: 100px;
    }

    .about-direction-item h3 {
        font-size: 28px;
    }

    .about-direction-item__arrow {
        font-size: 24px;
    }

    .about-philosophy__quote {
        min-height: 400px;
        padding: 28px;
        border-radius: 20px;
    }

    .about-philosophy__quote p {
        font-size: 46px;
    }

    .about-stats {
        padding-bottom: 85px;
    }

    .about-stat {
        min-height: 220px;
    }

    .about-stat strong {
        margin-bottom: 60px;
    }

    .about-fit-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 18px;
    }

    .about-fit-card__label {
        margin-bottom: 45px;
    }

    .about-fit-card li {
        padding-left: 34px;
        font-size: 19px;
    }

    .about-final {
        padding: 10px;
    }

    .about-final__inner {
        min-height: 680px;
        padding: 36px 24px;
        border-radius: 22px;
    }

    .about-final__label {
        margin-bottom: 70px;
    }

    .about-final h2 {
        font-size: 53px;
        line-height: 0.92;
    }

    .about-final p {
        font-size: 16px;
    }

    .about-final__contacts {
        flex-direction: column;
    }

    .about-final__button {
        width: 100%;
        min-width: 0;
    }

    .about-final__inner::before {
        right: -250px;
        bottom: -280px;
    }

}
/* =====================================================
   СТРАНИЦА РУБРИКИ
===================================================== */

.huts-archive {
    background: #f5f3ee;
    min-height: 100vh;
}


/* Шапка рубрики */

.huts-archive__hero {
    padding: 90px 0 55px;
    background: #151515;
    color: #ffffff;
}

.huts-archive__eyebrow {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.huts-archive__title {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.huts-archive__description {
    max-width: 720px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.65;
}

.huts-archive__description p:last-child {
    margin-bottom: 0;
}


/* Список статей */

.huts-archive__content {
    padding: 70px 0 100px;
}

.huts-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* Карточка */

.huts-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 20px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.huts-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(21, 21, 21, 0.09);
}


/* Изображение */

.huts-post-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9e7e1;
}

.huts-post-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.huts-post-card:hover .huts-post-card__image img {
    transform: scale(1.025);
}


/* Содержимое */

.huts-post-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 30px;
}

.huts-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 18px;
    color: #8a8882;
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.huts-post-card__meta span + span {
    position: relative;
}

.huts-post-card__meta span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
}

.huts-post-card__title {
    margin: 0 0 15px;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.huts-post-card__title a {
    color: #151515;
    text-decoration: none;
}

.huts-post-card__title a:hover {
    opacity: 0.65;
}

.huts-post-card__excerpt {
    margin-bottom: 26px;
    color: #65635e;
    font-size: 16px;
    line-height: 1.65;
}

.huts-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    color: #151515;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.huts-post-card__link span {
    transition: transform 0.2s ease;
}

.huts-post-card__link:hover span {
    transform: translateX(5px);
}


/* Пагинация */

.huts-pagination {
    margin-top: 55px;
}

.huts-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.huts-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: #151515;
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 50px;
    text-decoration: none;
}

.huts-pagination .page-numbers.current,
.huts-pagination .page-numbers:hover {
    color: #ffffff;
    background: #151515;
    border-color: #151515;
}


/* Пустая рубрика */

.huts-archive__empty {
    padding: 60px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
}

.huts-archive__empty h2 {
    margin-top: 0;
}


/* Адаптив */

@media (max-width: 800px) {

    .huts-archive__hero {
        padding: 65px 0 40px;
    }

    .huts-archive__content {
        padding: 45px 0 70px;
    }

    .huts-posts-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 520px) {


    .huts-post-card {
        border-radius: 15px;
    }

    .huts-post-card__body {
        padding: 23px 20px;
    }

    .huts-post-card__title {
        font-size: 26px;
    }

}

/* =====================================================
   СТРАНИЦА РУБРИКИ HUTS
===================================================== */

.huts-archive {
    min-height: 100vh;
    background: #f8f6f1;
}


/* =====================================================
   ВЕРХНИЙ БЛОК РУБРИКИ
===================================================== */

.huts-archive__hero {
    padding: 92px 0 58px;
    color: #ffffff;
    background: #171717;
}

.huts-archive__eyebrow {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.huts-archive__title {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.huts-archive__description {
    max-width: 720px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.65;
}

.huts-archive__description p {
    margin-top: 0;
}

.huts-archive__description p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   ОСНОВНОЙ БЛОК
===================================================== */

.huts-archive__content {
    padding: 72px 0 100px;
}


/* =====================================================
   СЕТКА СТАТЕЙ
===================================================== */

.huts-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =====================================================
   КАРТОЧКА СТАТЬИ
===================================================== */

.huts-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 20px;
    box-shadow: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.huts-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 23, 23, 0.13);
    box-shadow: 0 18px 45px rgba(23, 23, 23, 0.09);
}


/* =====================================================
   ИЗОБРАЖЕНИЕ КАРТОЧКИ
===================================================== */

.huts-post-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e7e4dd;
}

.huts-post-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.huts-post-card:hover .huts-post-card__image img {
    transform: scale(1.035);
}


/* =====================================================
   ТЕКСТОВАЯ ЧАСТЬ КАРТОЧКИ
===================================================== */

.huts-post-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}


/* =====================================================
   ДАТА И ВРЕМЯ ЧТЕНИЯ
===================================================== */

.huts-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-bottom: 18px;
    color: #8a8882;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.huts-post-card__meta span {
    position: relative;
}

.huts-post-card__meta span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
}


/* =====================================================
   ЗАГОЛОВОК КАРТОЧКИ
===================================================== */

.huts-post-card__title {
    margin: 0 0 16px;
    color: #171717;
    font-size: clamp(24px, 2.4vw, 31px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.huts-post-card__title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.huts-post-card__title a:hover {
    opacity: 0.62;
}


/* =====================================================
   КРАТКОЕ ОПИСАНИЕ
===================================================== */

.huts-post-card__excerpt {
    margin-bottom: 26px;
    color: #68665f;
    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   ССЫЛКА "ЧИТАТЬ СТАТЬЮ"
===================================================== */

.huts-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    color: #171717;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.huts-post-card__link span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.huts-post-card__link:hover span {
    transform: translateX(5px);
}


/* =====================================================
   ПАГИНАЦИЯ
===================================================== */

.huts-pagination {
    margin-top: 64px;
}

.huts-pagination .navigation {
    margin: 0;
}

.huts-pagination .screen-reader-text {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.huts-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.huts-pagination .page-numbers {
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    color: #171717;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.huts-pagination a.page-numbers:hover {
    color: #ffffff;
    background: #171717;
    border-color: #171717;
    transform: translateY(-2px);
}

.huts-pagination .page-numbers.current {
    color: #ffffff;
    background: #171717;
    border-color: #171717;
}

.huts-pagination .page-numbers.dots {
    min-width: 30px;
    padding: 0 5px;
    background: transparent;
    border-color: transparent;
}

.huts-pagination .page-numbers.prev,
.huts-pagination .page-numbers.next {
    min-width: auto;
    padding: 0 21px;
}


/* =====================================================
   ПУСТАЯ РУБРИКА
===================================================== */

.huts-archive__empty {
    padding: 60px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 20px;
}

.huts-archive__empty h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.huts-archive__empty p {
    margin: 0;
    color: #68665f;
    font-size: 16px;
    line-height: 1.6;
}


/* =====================================================
   ПЛАНШЕТ
===================================================== */

@media (max-width: 1020px) {

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

    .huts-archive__hero {
        padding: 76px 0 50px;
    }

    .huts-archive__content {
        padding: 60px 0 85px;
    }

}


/* =====================================================
   МОБИЛЬНАЯ ВЕРСИЯ
===================================================== */

@media (max-width: 680px) {


    .huts-archive__hero {
        padding: 58px 0 38px;
    }

    .huts-archive__title {
        font-size: 42px;
        line-height: 1;
    }

    .huts-archive__description {
        margin-top: 20px;
        font-size: 16px;
    }

    .huts-archive__content {
        padding: 42px 0 65px;
    }

    .huts-posts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .huts-post-card {
        border-radius: 16px;
    }

    .huts-post-card__body {
        padding: 23px 20px;
    }

    .huts-post-card__title {
        font-size: 26px;
    }

    .huts-post-card__excerpt {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .huts-pagination {
        margin-top: 44px;
    }

    .huts-pagination .nav-links {
        gap: 6px;
    }

    .huts-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .huts-pagination .page-numbers.prev,
    .huts-pagination .page-numbers.next {
        width: 100%;
        margin-top: 6px;
    }

}


/* =====================================================
   ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
===================================================== */

@media (max-width: 420px) {

    .huts-archive__title {
        font-size: 36px;
    }

    .huts-post-card__body {
        padding: 21px 18px;
    }

    .huts-post-card__title {
        font-size: 24px;
    }

}
/* =========================================================
   НИЖНИЙ БЛОК СТАТЬИ HUTS.PRO
   Рубрики, популярные материалы, CTA, навигация
   ========================================================= */

.huts-article-navigation {
    width: 100%;
    margin-top: 96px;
    padding: 0 0 80px;
    color: #111111;
    background: #ffffff;
}

.huts-article-navigation *,
.huts-article-navigation *::before,
.huts-article-navigation *::after {
    box-sizing: border-box;
}

.huts-article-navigation__container {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   ЗАГОЛОВОК БЛОКА
   ========================================================= */

.huts-directions__heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.huts-section-line {
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 24px;
    background: #111111;
}

.huts-directions__heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.huts-directions__heading p {
    max-width: 610px;
    margin: 22px 0 0;
    color: #696969;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   СЕТКА РУБРИК
   ========================================================= */

.huts-directions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.huts-direction-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 280px;
    padding: 28px 26px 24px;
    flex-direction: column;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dddddd;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.huts-direction-card:hover {
    color: #111111;
    border-color: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.huts-direction-card:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.huts-direction-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.huts-direction-card__top h3 {
    min-width: 0;
    margin: 0;
    color: #111111;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.huts-direction-card__count {
    flex: 0 0 auto;
    padding-top: 3px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.huts-direction-card__line {
    width: 100%;
    height: 1px;
    margin: 22px 0 20px;
    background: #c9c9c9;
}

.huts-direction-card__description {
    max-width: 300px;
    margin: 0;
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-direction-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: auto;
    padding-top: 30px;
}

.huts-direction-card__label {
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.huts-direction-card__arrow {
    flex: 0 0 auto;
    color: #111111;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-direction-card:hover .huts-direction-card__arrow {
    transform: translateX(7px);
}


/* =========================================================
   ПОПУЛЯРНЫЕ МАТЕРИАЛЫ И CTA
   ========================================================= */

.huts-article-extra {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    gap: 70px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid #dddddd;
}

.huts-popular h2 {
    margin: 0 0 22px;
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.huts-popular__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 54px;
    row-gap: 0;
}

.huts-popular__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 9px 0;
    color: #111111;
    text-decoration: none;
}

.huts-popular__number {
    padding-top: 1px;
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-popular__title {
    color: #111111;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    transition: opacity 0.2s ease;
}

.huts-popular__item:hover .huts-popular__title {
    opacity: 0.55;
}

.huts-project-cta {
    padding: 26px 24px 24px;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.huts-project-cta p {
    margin: 0 0 21px;
    color: #575757;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-project-cta a {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #111111;
    border: 1px solid #111111;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.huts-project-cta a:hover {
    color: #111111;
    background: #ffffff;
}


/* =========================================================
   ПРЕДЫДУЩАЯ И СЛЕДУЮЩАЯ СТАТЬЯ
   ========================================================= */

.huts-article-navigation .huts-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.huts-article-navigation .huts-post-navigation__item {
    display: flex;
    min-width: 0;
    min-height: 112px;
    padding: 23px 28px;
    align-items: center;
    gap: 26px;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    transition: background-color 0.2s ease;
}

.huts-article-navigation .huts-post-navigation__item:hover {
    color: #111111;
    background: #f7f7f7;
}

.huts-article-navigation
.huts-post-navigation__item
+
.huts-post-navigation__item,
.huts-article-navigation
.huts-post-navigation__empty
+
.huts-post-navigation__item {
    border-left: 1px solid #dddddd;
}

.huts-article-navigation
.huts-post-navigation__item--next {
    justify-content: flex-end;
    text-align: right;
}

.huts-article-navigation
.huts-post-navigation__arrow {
    flex: 0 0 auto;
    color: #111111;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-article-navigation
.huts-post-navigation__item--previous:hover
.huts-post-navigation__arrow {
    transform: translateX(-6px);
}

.huts-article-navigation
.huts-post-navigation__item--next:hover
.huts-post-navigation__arrow {
    transform: translateX(6px);
}

.huts-article-navigation
.huts-post-navigation__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.huts-article-navigation
.huts-post-navigation__label {
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.huts-article-navigation
.huts-post-navigation__content strong {
    display: block;
    color: #111111;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.huts-article-navigation
.huts-post-navigation__empty {
    min-height: 112px;
}


/* =========================================================
   АДАПТИВ ДО 1280 PX
   ========================================================= */

@media (max-width: 1280px) {

    .huts-directions__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .huts-article-extra {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 44px;
    }

}


/* =========================================================
   АДАПТИВ ДО 960 PX
   ========================================================= */

@media (max-width: 960px) {

    .huts-article-navigation {
        margin-top: 72px;
        padding-bottom: 60px;
    }

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

    .huts-article-extra {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .huts-project-cta {
        max-width: none;
    }

}


/* =========================================================
   АДАПТИВ ДО 680 PX
   ========================================================= */

@media (max-width: 680px) {

    .huts-article-navigation {
        margin-top: 56px;
        padding-bottom: 42px;
    }

    .huts-directions__heading {
        margin-bottom: 32px;
    }

    .huts-section-line {
        width: 48px;
        margin-bottom: 18px;
    }

    .huts-directions__heading h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .huts-directions__heading p {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.55;
    }

    .huts-directions__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .huts-direction-card {
        min-height: 238px;
        padding: 24px 21px 21px;
    }

    .huts-direction-card__top h3 {
        font-size: 22px;
    }

    .huts-direction-card__description {
        font-size: 15px;
    }

    .huts-article-extra {
        margin-top: 38px;
        padding-top: 25px;
    }

    .huts-popular__list {
        grid-template-columns: 1fr;
    }

    .huts-project-cta {
        padding: 22px 20px;
    }

    .huts-project-cta a {
        width: 100%;
    }

    .huts-article-navigation .huts-post-navigation {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .huts-article-navigation
    .huts-post-navigation__item {
        min-height: 100px;
        padding: 20px;
    }

    .huts-article-navigation
    .huts-post-navigation__item
    +
    .huts-post-navigation__item,
    .huts-article-navigation
    .huts-post-navigation__empty
    +
    .huts-post-navigation__item {
        border-top: 1px solid #dddddd;
        border-left: 0;
    }

    .huts-article-navigation
    .huts-post-navigation__empty {
        display: none;
    }

    .huts-article-navigation
    .huts-post-navigation__content strong {
        font-size: 17px;
    }

}


/* =========================================================
   СОВСЕМ МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 420px) {

    .huts-direction-card {
        min-height: 220px;
    }

    .huts-direction-card__top {
        gap: 14px;
    }

    .huts-direction-card__top h3 {
        font-size: 20px;
    }

    .huts-direction-card__count {
        font-size: 14px;
    }

    .huts-direction-card__footer {
        padding-top: 24px;
    }

    .huts-article-navigation
    .huts-post-navigation__item {
        gap: 18px;
    }

    .huts-article-navigation
    .huts-post-navigation__arrow {
        font-size: 27px;
    }

}

/* =========================================================
   СТРАНИЦА НАПРАВЛЕНИЙ HUTS.PRO
   ========================================================= */

.huts-directions-page {
    width: 100%;
    padding: 54px 0 88px;
    background: #f8f6f1;
    color: #111111;
}

.huts-directions-page *,
.huts-directions-page *::before,
.huts-directions-page *::after {
    box-sizing: border-box;
}

.huts-directions-page__container {
    width: min(100% - 48px, 1440px);
    margin: 0 auto;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.huts-directions-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 52px;
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.huts-directions-breadcrumbs a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-directions-breadcrumbs a:hover {
    color: #111111;
}

.huts-directions-breadcrumbs span:last-child {
    color: #111111;
}


/* =========================================================
   HERO
   ========================================================= */

.huts-directions-hero {
    max-width: 760px;
    margin-bottom: 48px;
}

.huts-directions-hero__line {
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 24px;
    background: #111111;
}

.huts-directions-hero h1 {
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.4vw, 66px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.huts-directions-hero p {
    max-width: 600px;
    margin: 22px 0 0;
    color: #646464;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   КАТАЛОГ РУБРИК
   ========================================================= */

.huts-directions-catalog {
    width: 100%;
}

.huts-directions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.huts-direction-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 280px;
    padding: 28px 26px 24px;
    flex-direction: column;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dddddd;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.huts-direction-card:hover {
    color: #111111;
    border-color: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.huts-direction-card:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.huts-direction-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.huts-direction-card__top h2 {
    min-width: 0;
    margin: 0;
    color: #111111;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.huts-direction-card__count {
    flex: 0 0 auto;
    padding-top: 3px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.huts-direction-card__divider {
    width: 100%;
    height: 1px;
    margin: 22px 0 20px;
    background: #c9c9c9;
}

.huts-direction-card__description {
    max-width: 300px;
    margin: 0;
    color: #5b5b5b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-direction-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: auto;
    padding-top: 30px;
}

.huts-direction-card__label {
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.huts-direction-card__arrow {
    flex: 0 0 auto;
    color: #111111;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-direction-card:hover .huts-direction-card__arrow {
    transform: translateX(7px);
}


/* =========================================================
   ПУСТОЙ КАТАЛОГ
   ========================================================= */

.huts-directions-empty {
    padding: 48px;
    border: 1px solid #dddddd;
    background: #fafafa;
}

.huts-directions-empty h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.huts-directions-empty p {
    max-width: 600px;
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   ПОПУЛЯРНЫЕ МАТЕРИАЛЫ + CTA
   ========================================================= */

.huts-directions-extra {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 395px;
    align-items: start;
    gap: 70px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid #dddddd;
}

.huts-directions-popular h2 {
    margin: 0 0 22px;
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.huts-directions-popular__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 54px;
    row-gap: 0;
}

.huts-directions-popular__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 9px 0;
    color: #111111;
    text-decoration: none;
}

.huts-directions-popular__number {
    padding-top: 1px;
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-directions-popular__title {
    color: #111111;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    transition: opacity 0.2s ease;
}

.huts-directions-popular__item:hover
.huts-directions-popular__title {
    opacity: 0.55;
}

.huts-directions-cta {
    padding: 26px 24px 24px;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.huts-directions-cta p {
    margin: 0 0 21px;
    color: #575757;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.huts-directions-cta a {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #111111;
    border: 1px solid #111111;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.huts-directions-cta a:hover {
    color: #111111;
    background: #ffffff;
}


/* =========================================================
   НИЖНЯЯ НАВИГАЦИЯ
   ========================================================= */

.huts-directions-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.huts-directions-navigation__item {
    display: flex;
    min-width: 0;
    min-height: 112px;
    padding: 23px 28px;
    align-items: center;
    gap: 26px;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    transition: background-color 0.2s ease;
}

.huts-directions-navigation__item:hover {
    color: #111111;
    background: #f7f7f7;
}

.huts-directions-navigation__item
+
.huts-directions-navigation__item {
    border-left: 1px solid #dddddd;
}

.huts-directions-navigation__item--next {
    justify-content: flex-end;
    text-align: right;
}

.huts-directions-navigation__arrow {
    flex: 0 0 auto;
    color: #111111;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-directions-navigation__item--previous:hover
.huts-directions-navigation__arrow {
    transform: translateX(-6px);
}

.huts-directions-navigation__item--next:hover
.huts-directions-navigation__arrow {
    transform: translateX(6px);
}

.huts-directions-navigation__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.huts-directions-navigation__label {
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.huts-directions-navigation__content strong {
    display: block;
    color: #111111;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}


/* =========================================================
   АДАПТИВ ДО 1280 PX
   ========================================================= */

@media (max-width: 1280px) {

    .huts-directions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .huts-directions-extra {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 44px;
    }

}


/* =========================================================
   АДАПТИВ ДО 960 PX
   ========================================================= */

@media (max-width: 960px) {

    .huts-directions-page {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .huts-directions-breadcrumbs {
        margin-bottom: 42px;
    }

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

    .huts-directions-extra {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .huts-directions-cta {
        max-width: none;
    }

}


/* =========================================================
   АДАПТИВ ДО 680 PX
   ========================================================= */

@media (max-width: 680px) {

    .huts-directions-page {
        padding: 30px 0 42px;
    }

    .huts-directions-page__container {
        width: min(100% - 28px, 1440px);
    }

    .huts-directions-breadcrumbs {
        margin-bottom: 34px;
        font-size: 13px;
    }

    .huts-directions-hero {
        margin-bottom: 32px;
    }

    .huts-directions-hero__line {
        width: 48px;
        margin-bottom: 18px;
    }

    .huts-directions-hero h1 {
        font-size: 36px;
        line-height: 1.05;
    }

    .huts-directions-hero p {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.55;
    }

    .huts-directions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .huts-direction-card {
        min-height: 238px;
        padding: 24px 21px 21px;
    }

    .huts-direction-card__top h2 {
        font-size: 22px;
    }

    .huts-direction-card__description {
        font-size: 15px;
    }

    .huts-directions-extra {
        margin-top: 38px;
        padding-top: 25px;
    }

    .huts-directions-popular__grid {
        grid-template-columns: 1fr;
    }

    .huts-directions-cta {
        padding: 22px 20px;
    }

    .huts-directions-cta a {
        width: 100%;
    }

    .huts-directions-navigation {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .huts-directions-navigation__item {
        min-height: 100px;
        padding: 20px;
    }

    .huts-directions-navigation__item
    +
    .huts-directions-navigation__item {
        border-top: 1px solid #dddddd;
        border-left: 0;
    }

    .huts-directions-navigation__content strong {
        font-size: 17px;
    }

}


/* =========================================================
   СОВСЕМ МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 420px) {

    .huts-directions-hero h1 {
        font-size: 32px;
    }

    .huts-direction-card {
        min-height: 220px;
    }

    .huts-direction-card__top {
        gap: 14px;
    }

    .huts-direction-card__top h2 {
        font-size: 20px;
    }

    .huts-direction-card__count {
        font-size: 14px;
    }

    .huts-direction-card__bottom {
        padding-top: 24px;
    }

    .huts-directions-navigation__item {
        gap: 18px;
    }

    .huts-directions-navigation__arrow {
        font-size: 27px;
    }

}

/* =========================================================
   ЭФФЕКТЫ
   ========================================================= */

.huts-direction-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(0,0,0,.015) 100%
    );
    opacity:0;
    transition:.3s;
    pointer-events:none;
}

.huts-direction-card:hover::before{
    opacity:1;
}

.huts-direction-card:hover
.huts-direction-card__divider{
    background:#111;
}

.huts-direction-card:hover
.huts-direction-card__label{
    letter-spacing:.02em;
}


/* =========================================================
   CTA
   ========================================================= */

.huts-directions-cta{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:180px;
}

.huts-directions-cta a span:last-child{
    transition:.25s;
}

.huts-directions-cta a:hover span:last-child{
    transform:translateX(6px);
}


/* =========================================================
   POPULAR
   ========================================================= */

.huts-directions-popular__item{
    transition:.2s;
}

.huts-directions-popular__item:hover{
    transform:translateX(5px);
}

.huts-directions-popular__item:hover
.huts-directions-popular__number{
    color:#111;
}


/* =========================================================
   BOTTOM NAV
   ========================================================= */

.huts-directions-navigation{
    overflow:hidden;
}

.huts-directions-navigation__item{
    transition:
        background .25s,
        color .25s;
}

.huts-directions-navigation__item:hover{

    background:#fafafa;

}

.huts-directions-navigation__item:hover
.huts-directions-navigation__content strong{

    color:#000;

}

.huts-directions-navigation__item--previous:hover
.huts-directions-navigation__arrow{

    transform:translateX(-8px);

}

.huts-directions-navigation__item--next:hover
.huts-directions-navigation__arrow{

    transform:translateX(8px);

}


/* =========================================================
   PAGE ANIMATION
   ========================================================= */

.huts-direction-card{

    animation:hutsFade .45s ease both;

}

.huts-direction-card:nth-child(2){
    animation-delay:.05s;
}

.huts-direction-card:nth-child(3){
    animation-delay:.1s;
}

.huts-direction-card:nth-child(4){
    animation-delay:.15s;
}

.huts-direction-card:nth-child(5){
    animation-delay:.2s;
}

.huts-direction-card:nth-child(6){
    animation-delay:.25s;
}

.huts-direction-card:nth-child(7){
    animation-delay:.3s;
}

.huts-direction-card:nth-child(8){
    animation-delay:.35s;
}

@keyframes hutsFade{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:none;

    }

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width:1700px){

    .huts-directions-page__container{

        max-width:1540px;

    }

}


/* =========================================================
   1400
   ========================================================= */

@media (max-width:1400px){

    .huts-directions-grid{

        gap:18px;

    }

}


/* =========================================================
   1100
   ========================================================= */

@media (max-width:1100px){

    .huts-directions-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:900px){

    .huts-directions-extra{

        display:flex;
        flex-direction:column;

    }

    .huts-directions-popular__grid{

        grid-template-columns:1fr;

    }

    .huts-directions-navigation{

        grid-template-columns:1fr;

    }

    .huts-directions-navigation__item+

    .huts-directions-navigation__item{

        border-left:0;
        border-top:1px solid #ddd;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:640px){

    .huts-directions-grid{

        grid-template-columns:1fr;

    }

    .huts-directions-hero h1{

        font-size:38px;

    }

    .huts-directions-hero p{

        font-size:16px;

    }

    .huts-direction-card{

        min-height:235px;

    }

    .huts-direction-card__top h2{

        font-size:22px;

    }

    .huts-directions-navigation__content strong{

        font-size:17px;

    }

}


/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width:420px){

    .huts-directions-page{

        padding-top:24px;

    }

    .huts-directions-page__container{

        width:calc(100% - 24px);

    }

    .huts-directions-hero h1{

        font-size:32px;

    }

    .huts-direction-card{

        padding:22px 18px;

    }

    .huts-direction-card__top h2{

        font-size:20px;

    }

    .huts-direction-card__description{

        font-size:15px;

    }

}

/* =========================================================
   СТРАНИЦА КОНТАКТОВ HUTS.PRO
   ========================================================= */

.huts-contact-page {
    width: 100%;
    padding: 54px 0 88px;
    color: #111111;
    background: #f8f6f1;
}

.huts-contact-page *,
.huts-contact-page *::before,
.huts-contact-page *::after {
    box-sizing: border-box;
}

.huts-contact-page__container {
    width: min(100% - 48px, 1440px);
    margin: 0 auto;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.huts-contact-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 52px;
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.huts-contact-breadcrumbs a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-contact-breadcrumbs a:hover {
    color: #111111;
}

.huts-contact-breadcrumbs span:last-child {
    color: #111111;
}


/* =========================================================
   HERO
   ========================================================= */

.huts-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: end;
    gap: 90px;
    padding-bottom: 70px;
    border-bottom: 1px solid #d8d8d8;
}

.huts-contact-hero__content {
    max-width: 860px;
}

.huts-contact-hero__line {
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 24px;
    background: #111111;
}

.huts-contact-hero__eyebrow {
    margin: 0 0 18px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.huts-contact-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #111111;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.huts-contact-hero__intro {
    max-width: 690px;
    margin: 28px 0 0;
    color: #5f5f5f;
    font-size: 19px;
    line-height: 1.62;
}

.huts-contact-hero__aside {
    padding: 26px 0 4px;
    border-top: 1px solid #111111;
}

.huts-contact-hero__aside-number {
    display: block;
    margin-bottom: 30px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-contact-hero__aside p {
    margin: 0;
    color: #333333;
    font-size: 17px;
    line-height: 1.55;
}


/* =========================================================
   ОБЩИЙ ЗАГОЛОВОК СЕКЦИИ
   ========================================================= */

.huts-contact-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: end;
    gap: 80px;
    margin-bottom: 38px;
}

.huts-contact-section-heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.huts-contact-section-heading p {
    margin: 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   СПОСОБЫ СВЯЗИ
   ========================================================= */

.huts-contact-methods {
    padding: 76px 0;
    border-bottom: 1px solid #d8d8d8;
}

.huts-contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.huts-contact-method {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 390px;
    padding: 28px 26px 25px;
    flex-direction: column;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.huts-contact-method:hover {
    color: #111111;
    border-color: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.huts-contact-method:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.huts-contact-method__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.huts-contact-method__number {
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-contact-method__arrow {
    color: #111111;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-contact-method:hover .huts-contact-method__arrow {
    transform: translateX(7px);
}

.huts-contact-method__divider {
    width: 100%;
    height: 1px;
    margin: 23px 0 32px;
    background: #c7c7c7;
    transition: background-color 0.25s ease;
}

.huts-contact-method:hover .huts-contact-method__divider {
    background: #111111;
}

.huts-contact-method__label {
    margin-bottom: 12px;
    color: #777777;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huts-contact-method strong {
    display: block;
    margin: 0;
    color: #111111;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.huts-contact-method p {
    max-width: 330px;
    margin: 22px 0 0;
    color: #5e5e5e;
    font-size: 15px;
    line-height: 1.55;
}

.huts-contact-method__action {
    margin-top: auto;
    padding-top: 35px;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   ПОДХОД
   ========================================================= */

.huts-contact-approach {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    gap: 110px;
    padding: 82px 0;
    border-bottom: 1px solid #d8d8d8;
}

.huts-contact-approach__heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.huts-contact-approach__index {
    padding-top: 9px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-contact-approach__heading h2 {
    max-width: 730px;
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.huts-contact-approach__content {
    padding-top: 5px;
}

.huts-contact-approach__content p {
    margin: 0;
    color: #5e5e5e;
    font-size: 16px;
    line-height: 1.65;
}

.huts-contact-approach__content p + p {
    margin-top: 24px;
}

.huts-contact-approach__content
.huts-contact-approach__lead {
    color: #111111;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
}


/* =========================================================
   ЧТО ПРИСЛАТЬ
   ========================================================= */

.huts-contact-brief {
    padding: 80px 0;
    border-bottom: 1px solid #d8d8d8;
}

.huts-contact-brief__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.huts-contact-brief__item {
    min-height: 205px;
    padding: 24px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.huts-contact-brief__item span {
    display: block;
    margin-bottom: 48px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-contact-brief__item p {
    margin: 0;
    color: #222222;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   ФИНАЛЬНЫЙ CTA
   ========================================================= */

.huts-contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: end;
    gap: 100px;
    margin-top: 80px;
    padding: 58px;
    color: #ffffff;
    background: #111111;
}

.huts-contact-cta__label {
    display: block;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.huts-contact-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 74px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.huts-contact-cta__action p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
}

.huts-contact-cta__action a {
    display: inline-flex;
    min-height: 52px;
    padding: 14px 23px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #ffffff;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.huts-contact-cta__action a span {
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.huts-contact-cta__action a:hover {
    color: #ffffff;
    background: transparent;
}

.huts-contact-cta__action a:hover span {
    transform: translateX(6px);
}


/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 1180px) {

    .huts-contact-hero {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 55px;
    }

    .huts-contact-section-heading {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 50px;
    }

    .huts-contact-approach {
        gap: 65px;
    }

    .huts-contact-brief__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .huts-contact-cta {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 60px;
    }

}


@media (max-width: 900px) {

    .huts-contact-page {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .huts-contact-hero,
    .huts-contact-section-heading,
    .huts-contact-approach,
    .huts-contact-cta {
        grid-template-columns: 1fr;
    }

    .huts-contact-hero {
        align-items: start;
        gap: 48px;
    }

    .huts-contact-hero__aside {
        max-width: 520px;
    }

    .huts-contact-methods__grid {
        grid-template-columns: 1fr;
    }

    .huts-contact-method {
        min-height: 320px;
    }

    .huts-contact-approach {
        gap: 50px;
    }

    .huts-contact-cta {
        align-items: start;
    }

    .huts-contact-cta__action {
        max-width: 520px;
    }

}


@media (max-width: 640px) {

    .huts-contact-page {
        padding: 30px 0 42px;
    }

    .huts-contact-page__container {
        width: min(100% - 28px, 1440px);
    }

    .huts-contact-breadcrumbs {
        margin-bottom: 34px;
        font-size: 13px;
    }

    .huts-contact-hero {
        padding-bottom: 48px;
    }

    .huts-contact-hero__line {
        width: 48px;
        margin-bottom: 18px;
    }

    .huts-contact-hero h1 {
        font-size: 46px;
        line-height: 0.98;
    }

    .huts-contact-hero__intro {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.55;
    }

    .huts-contact-methods,
    .huts-contact-approach,
    .huts-contact-brief {
        padding: 54px 0;
    }

    .huts-contact-section-heading {
        gap: 20px;
        margin-bottom: 30px;
    }

    .huts-contact-section-heading h2 {
        font-size: 36px;
    }

    .huts-contact-method {
        min-height: 300px;
        padding: 23px 20px 21px;
    }

    .huts-contact-method strong {
        font-size: 25px;
    }

    .huts-contact-approach__heading {
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 13px;
    }

    .huts-contact-approach__heading h2 {
        font-size: 40px;
    }

    .huts-contact-approach__content
    .huts-contact-approach__lead {
        font-size: 21px;
    }

    .huts-contact-brief__grid {
        grid-template-columns: 1fr;
    }

    .huts-contact-brief__item {
        min-height: 170px;
        padding: 21px;
    }

    .huts-contact-brief__item span {
        margin-bottom: 35px;
    }

    .huts-contact-cta {
        margin-top: 54px;
        padding: 32px 24px;
        gap: 40px;
    }

    .huts-contact-cta h2 {
        font-size: 43px;
    }

    .huts-contact-cta__action a {
        width: 100%;
    }

}


@media (max-width: 420px) {

    .huts-contact-hero h1 {
        font-size: 40px;
    }

    .huts-contact-method strong {
        font-size: 22px;
    }

    .huts-contact-approach__heading h2 {
        font-size: 35px;
    }

    .huts-contact-cta h2 {
        font-size: 37px;
    }

}

/* =========================================================
   СТРАНИЦА «О ПРОЕКТЕ» HUTS.PRO
   ========================================================= */

.huts-about-page {
    width: 100%;
    padding: 54px 0 88px;
    color: #111111;
    background: #f8f6f1;
}

.huts-about-page *,
.huts-about-page *::before,
.huts-about-page *::after {
    box-sizing: border-box;
}

.huts-about-page__container {
    width: min(100% - 48px, 1440px);
    margin: 0 auto;
}


/* =========================================================
   ХЛЕБНЫЕ КРОШКИ
   ========================================================= */

.huts-about-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 52px;
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.huts-about-breadcrumbs a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.huts-about-breadcrumbs a:hover {
    color: #111111;
}

.huts-about-breadcrumbs span:last-child {
    color: #111111;
}


/* =========================================================
   HERO
   ========================================================= */

.huts-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: end;
    gap: 90px;
    padding-bottom: 70px;
    border-bottom: 1px solid #d8d8d8;
}

.huts-about-hero__main {
    max-width: 930px;
}

.huts-about-hero__line {
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 24px;
    background: #111111;
}

.huts-about-hero__eyebrow {
    margin: 0 0 18px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.huts-about-hero h1 {
    margin: 0;
    color: #111111;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.huts-about-hero__aside {
    padding: 26px 0 4px;
    border-top: 1px solid #111111;
}

.huts-about-hero__number {
    display: block;
    margin-bottom: 30px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-hero__aside p {
    margin: 0;
    color: #333333;
    font-size: 17px;
    line-height: 1.55;
}

.huts-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.huts-about-button {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 20px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #111111;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.huts-about-button span {
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.huts-about-button:hover span {
    transform: translateX(6px);
}

.huts-about-button--dark {
    color: #ffffff;
    background: #111111;
}

.huts-about-button--dark:hover {
    color: #111111;
    background: #ffffff;
}

.huts-about-button--light {
    color: #111111;
    background: #ffffff;
}

.huts-about-button--light:hover {
    color: #ffffff;
    background: #111111;
}


/* =========================================================
   ТЕГИ
   ========================================================= */

.huts-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 0;
    border-bottom: 1px solid #d8d8d8;
}

.huts-about-tags span {
    padding: 9px 13px;
    color: #444444;
    font-size: 13px;
    line-height: 1;
    border: 1px solid #d8d8d8;
    background: #ffffff;
}


/* =========================================================
   ОБЩИЕ СЕКЦИИ
   ========================================================= */

.huts-about-section {
    padding: 80px 0;
    border-bottom: 1px solid #d8d8d8;
}

.huts-about-section__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.huts-about-section__number,
.huts-about-section__label {
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-section__label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huts-about-section__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    align-items: end;
    gap: 80px;
    margin-bottom: 40px;
}

.huts-about-section__intro h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.6vw, 68px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.huts-about-section__intro p {
    margin: 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.65;
}

.huts-about-lead {
    color: #111111 !important;
    font-size: 23px !important;
    font-weight: 500;
    line-height: 1.4 !important;
    letter-spacing: -0.02em;
}


/* =========================================================
   INTRO
   ========================================================= */

.huts-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    gap: 110px;
}

.huts-about-intro__title h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(44px, 4.8vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.huts-about-intro__content p {
    margin: 0;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.65;
}

.huts-about-intro__content p + p {
    margin-top: 24px;
}

.huts-about-formula {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    margin-top: 60px;
}

.huts-about-formula__item {
    display: flex;
    min-height: 120px;
    padding: 24px;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    letter-spacing: -0.03em;
    border: 1px solid #d8d8d8;
}

.huts-about-formula__item--dark {
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

.huts-about-formula > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 28px;
    font-weight: 300;
}


/* =========================================================
   ПРИНЦИПЫ
   ========================================================= */

.huts-about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.huts-about-principle {
    display: flex;
    min-height: 330px;
    padding: 26px 24px 24px;
    flex-direction: column;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.huts-about-principle:hover {
    border-color: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.huts-about-principle__number {
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-principle__divider {
    width: 100%;
    height: 1px;
    margin: 24px 0 28px;
    background: #c8c8c8;
}

.huts-about-principle h3 {
    margin: 0;
    color: #111111;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.huts-about-principle p {
    margin: auto 0 0;
    padding-top: 28px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   ПРОЦЕСС
   ========================================================= */

.huts-about-process__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.huts-about-process-item {
    min-height: 245px;
    padding: 24px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.huts-about-process-item > span {
    display: block;
    margin-bottom: 52px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-process-item h3 {
    margin: 0 0 16px;
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.huts-about-process-item p {
    margin: 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   НАПРАВЛЕНИЯ
   ========================================================= */

.huts-about-directions__list {
    border-top: 1px solid #d8d8d8;
}

.huts-about-directions__list a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 20px 0;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #d8d8d8;
    transition:
        padding 0.25s ease,
        background-color 0.25s ease;
}

.huts-about-directions__list a:hover {
    padding-left: 18px;
    padding-right: 18px;
    background: #f7f7f7;
}

.huts-about-directions__list a > span {
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-directions__list strong {
    color: #111111;
    font-size: clamp(22px, 2.2vw, 31px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.huts-about-directions__list i {
    color: #111111;
    font-size: 27px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.huts-about-directions__list a:hover i {
    transform: translateX(7px);
}


/* =========================================================
   ФИЛОСОФИЯ
   ========================================================= */

.huts-about-philosophy__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 110px;
}

.huts-about-philosophy blockquote {
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.7vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.huts-about-philosophy__content p {
    margin: 0;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.65;
}

.huts-about-philosophy__content p + p {
    margin-top: 24px;
}


/* =========================================================
   СТАТИСТИКА
   ========================================================= */

.huts-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid #d8d8d8;
    border-top: 1px solid #d8d8d8;
}

.huts-about-stat {
    min-height: 230px;
    padding: 26px 24px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.huts-about-stat strong {
    display: block;
    margin-bottom: 65px;
    color: #111111;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.huts-about-stat span {
    color: #555555;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   ПОДХОДИМ ЛИ ДРУГ ДРУГУ
   ========================================================= */

.huts-about-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.huts-about-fit-card {
    padding: 28px 26px 30px;
    border: 1px solid #d8d8d8;
}

.huts-about-fit-card__number {
    display: block;
    margin-bottom: 40px;
    color: #777777;
    font-size: 13px;
    line-height: 1;
}

.huts-about-fit-card h3 {
    margin: 0 0 28px;
    color: #111111;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.huts-about-fit-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.huts-about-fit-card li {
    position: relative;
    padding: 15px 0 15px 22px;
    color: #444444;
    font-size: 16px;
    line-height: 1.5;
    border-top: 1px solid #e1e1e1;
}

.huts-about-fit-card li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #111111;
}


/* =========================================================
   ФИНАЛЬНЫЙ CTA
   ========================================================= */

.huts-about-final {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: end;
    gap: 100px;
    margin-top: 80px;
    padding: 58px;
    color: #ffffff;
    background: #111111;
}

.huts-about-final__label {
    display: block;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.huts-about-final h2 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 74px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.huts-about-final__aside p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.6;
}

.huts-about-final__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
}

.huts-about-final__contacts a {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.huts-about-final__contacts a:hover {
    border-color: #ffffff;
}

.huts-about-final__button {
    display: inline-flex;
    min-height: 52px;
    padding: 14px 23px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #ffffff;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.huts-about-final__button span {
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.huts-about-final__button:hover {
    color: #ffffff;
    background: transparent;
}

.huts-about-final__button:hover span {
    transform: translateX(6px);
}


/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 1180px) {

    .huts-about-hero {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 55px;
    }

    .huts-about-section__intro {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 50px;
    }

    .huts-about-intro__grid,
    .huts-about-philosophy__grid {
        gap: 65px;
    }

    .huts-about-final {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 60px;
    }

}


@media (max-width: 960px) {

    .huts-about-page {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .huts-about-hero,
    .huts-about-section__intro,
    .huts-about-intro__grid,
    .huts-about-philosophy__grid,
    .huts-about-final {
        grid-template-columns: 1fr;
    }

    .huts-about-hero {
        align-items: start;
        gap: 48px;
    }

    .huts-about-hero__aside {
        max-width: 540px;
    }

    .huts-about-principles__grid,
    .huts-about-process__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .huts-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .huts-about-final__aside {
        max-width: 540px;
    }

}


@media (max-width: 680px) {

    .huts-about-page {
        padding: 30px 0 42px;
    }

    .huts-about-page__container {
        width: min(100% - 28px, 1440px);
    }

    .huts-about-breadcrumbs {
        margin-bottom: 34px;
        font-size: 13px;
    }

    .huts-about-hero {
        padding-bottom: 48px;
    }

    .huts-about-hero__line {
        width: 48px;
        margin-bottom: 18px;
    }

    .huts-about-hero h1 {
        font-size: 46px;
        line-height: 0.98;
    }

    .huts-about-hero__aside p {
        font-size: 16px;
    }

    .huts-about-hero__actions {
        flex-direction: column;
    }

    .huts-about-button {
        width: 100%;
    }

    .huts-about-section {
        padding: 54px 0;
    }

    .huts-about-section__heading {
        margin-bottom: 30px;
    }

    .huts-about-section__intro {
        gap: 22px;
        margin-bottom: 30px;
    }

    .huts-about-section__intro h2,
    .huts-about-intro__title h2,
    .huts-about-philosophy blockquote {
        font-size: 39px;
    }

    .huts-about-lead {
        font-size: 20px !important;
    }

    .huts-about-formula {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 42px;
    }

    .huts-about-formula > span {
        min-height: 30px;
    }

    .huts-about-formula__item {
        min-height: 90px;
    }

    .huts-about-principles__grid,
    .huts-about-process__list,
    .huts-about-stats,
    .huts-about-fit__grid {
        grid-template-columns: 1fr;
    }

    .huts-about-principle {
        min-height: 290px;
    }

    .huts-about-process-item {
        min-height: 215px;
    }

    .huts-about-directions__list a {
        grid-template-columns: 36px minmax(0, 1fr) 28px;
        gap: 14px;
        min-height: 80px;
    }

    .huts-about-directions__list strong {
        font-size: 21px;
    }

    .huts-about-stat {
        min-height: 190px;
    }

    .huts-about-stat strong {
        margin-bottom: 48px;
    }

    .huts-about-final {
        margin-top: 54px;
        padding: 32px 24px;
        gap: 40px;
    }

    .huts-about-final h2 {
        font-size: 43px;
    }

    .huts-about-final__button {
        width: 100%;
    }

}


@media (max-width: 420px) {

    .huts-about-hero h1 {
        font-size: 40px;
    }

    .huts-about-section__intro h2,
    .huts-about-intro__title h2,
    .huts-about-philosophy blockquote {
        font-size: 35px;
    }

    .huts-about-principle h3 {
        font-size: 22px;
    }

    .huts-about-fit-card h3 {
        font-size: 30px;
    }

    .huts-about-final h2 {
        font-size: 37px;
    }

}
