html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    background-color: #ffffff;
    color: #2a2a2a;
}

.brsk-header {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ec 60%, #edebd8 100%);
    border-bottom: 1px solid #BFC9A3;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    overflow: hidden;
}

.brsk-header__top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid rgba(191, 201, 163, 0.4);
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-mark__emblem {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background-color: #BBAC24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    border: 2px solid rgba(187, 172, 36, 0.3);
    flex-shrink: 0;
}

.brand-mark__emblem img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.brand-mark__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-mark__name {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #2a2a2a;
}

.brand-mark__tagline {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #5a5630;
    font-weight: 400;
}

.brsk-header__contact-strip {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #3d3a28;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-item:hover {
    color: #BBAC24;
}

.contact-item:focus {
    outline: none;
    transform: scale(1.02);
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.brsk-header__nav-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.site-nav {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 0;
}

.site-nav__link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #3d3a28;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
    white-space: nowrap;
}

.site-nav__link:hover {
    background-color: rgba(187, 172, 36, 0.12);
    color: #7a7018;
}

.site-nav__link:focus {
    outline: none;
    transform: scale(1.02);
    background-color: rgba(191, 201, 163, 0.25);
}

.site-nav__link.active {
    background-color: rgba(187, 172, 36, 0.18);
    color: #6b6214;
    font-weight: 700;
}

.site-nav__accent {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 700;
    font-style: italic;
    color: #2a2a2a;
    background: linear-gradient(90deg, #BBAC24 0%, #d4c52a 50%, #BFC9A3 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
    cursor: pointer;
}

.nav-cta-btn:hover {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.nav-cta-btn:focus {
    outline: none;
    transform: scale(1.02);
}

.brsk-footer {
    background: linear-gradient(160deg, #2a2a2a 0%, #3a3820 100%);
    color: #E6DDDD;
    padding: 32px 0 0 0;
}

.brsk-footer__cols {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
    flex: 0 0 auto;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.footer-brand-link__emblem {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background-color: #BBAC24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    border: 2px solid rgba(187, 172, 36, 0.4);
    flex-shrink: 0;
}

.footer-brand-link__emblem img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.footer-brand-link__name {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #ffffff;
}

.footer-brand-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #BFC9A3;
    letter-spacing: 0.01em;
    max-width: 240px;
}

.footer-addr-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 200px;
}

.footer-col-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: #BBAC24;
    text-transform: uppercase;
}

.footer-addr-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-addr-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #E6DDDD;
    letter-spacing: 0.01em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-addr-list a {
    color: #E6DDDD;
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-addr-list a:hover {
    color: #BBAC24;
}

.footer-addr-list a:focus {
    outline: none;
    transform: scale(1.02);
}

.f-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(191, 201, 163, 0.2);
    background-color: rgba(0, 0, 0, 0.15);
}

.footer-bottom__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.footer-copy {
    font-size: 15px;
    line-height: 1.4;
    color: #BFC9A3;
    letter-spacing: 0.01em;
}

.footer-legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-legal-nav li {
    display: flex;
    align-items: center;
}

.footer-legal-nav__link {
    font-size: 15px;
    line-height: 1.4;
    color: #BFC9A3;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-legal-nav__link:hover {
    color: #BBAC24;
}

.footer-legal-nav__link:focus {
    outline: none;
    transform: scale(1.02);
}

.footer-legal-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(191, 201, 163, 0.4);
    display: inline-block;
    margin-left: 16px;
}

@media (max-width: 992px) {
    .brsk-header__top {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }

    .brsk-header__contact-strip {
        gap: 16px;
        flex-wrap: wrap;
    }

    .brsk-header__nav-row {
        padding: 0 16px;
    }

    .site-nav__accent {
        margin-left: 0;
        width: 100%;
        padding-bottom: 8px;
    }

    .brsk-footer__cols {
        padding: 0 16px 32px 16px;
    }

    .footer-bottom__inner {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .brand-mark__text {
        gap: 4px;
    }

    .brand-mark__name {
        font-size: 24px;
    }

    .brsk-header__contact-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .site-nav {
        gap: 4px;
    }

    .site-nav__link {
        padding: 8px 12px;
    }

    .footer-brand-col {
        width: 100%;
    }

    .footer-legal-nav {
        gap: 8px;
    }
}

.cookie-pref-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #BBAC24 0%, #BFC9A3 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    z-index: 900;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-pref-btn:hover {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.cookie-pref-btn:focus {
    outline: none;
    transform: scale(1.02);
}

.ck-popup {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 560px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    border: 1px solid rgba(191, 201, 163, 0.5);
    padding: 32px;
    z-index: 1000;
}

.ck-popup__body {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.ck-popup__panel {
    background: rgba(191, 201, 163, 0.12);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: inset 0 2px 6px rgba(187, 172, 36, 0.07);
}

.ck-popup__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.ck-popup__toggle-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a2a;
    letter-spacing: 0.01em;
}

.ck-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.ck-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ck-toggle__track {
    position: absolute;
    inset: 0;
    background: #E6DDDD;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-toggle__track::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    top: 3px;
    left: 3px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.ck-toggle input:checked+.ck-toggle__track {
    background: #BBAC24;
}

.ck-toggle input:checked+.ck-toggle__track::after {
    transform: translateX(20px);
}

.ck-popup__sale-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ck-popup__sale-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a2a;
    letter-spacing: 0.01em;
}

.ck-popup__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ck-btn {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-btn:hover {
    transform: scale(1.02);
}

.ck-btn:focus {
    outline: none;
    transform: scale(1.02);
}

.ck-btn--accept {
    border: 2px solid #BBAC24;
    color: #2a2a2a;
}

.ck-btn--accept:hover {
    background-color: rgba(187, 172, 36, 0.15);
}

.ck-btn--decline {
    border: 2px solid #BFC9A3;
    color: #3d3a28;
}

.ck-btn--decline:hover {
    background-color: rgba(191, 201, 163, 0.2);
}

.ck-btn--manage {
    border: 2px solid #BFC9A3;
    color: #3d3a28;
    font-size: 15px;
}

.ck-btn--manage:hover {
    background-color: rgba(191, 201, 163, 0.2);
}

.ck-popup__expand-btn {
    background: none;
    border: none;
    font-size: 15px;
    line-height: 1.4;
    color: #7a7018;
    cursor: pointer;
    padding: 4px 0;
    letter-spacing: 0.01em;
    font-family: 'Roboto', sans-serif;
    text-decoration: underline;
    margin-bottom: 8px;
    display: block;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-popup__expand-btn:hover {
    color: #BBAC24;
}

.ck-popup__expand-btn:focus {
    outline: none;
    transform: scale(1.02);
}

.doc-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px;
    color: #2a2520;
    line-height: 1.65;
    font-size: 15px;
    letter-spacing: 0.015em;
}

.doc-info h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a14;
    margin-top: 0;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #BBAC24;
}

.doc-info h2 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #1e1a14;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-top: 8px;
}

.doc-info h3 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #2a2520;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.doc-info h4 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #2a2520;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-info h5 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #3a342c;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-info h6 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #4a4038;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 4px;
}

.doc-info p {
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: 0.015em;
    color: #2a2520;
    margin-top: 0;
    margin-bottom: 16px;
}

.doc-info strong,
.doc-info b {
    font-weight: 700;
    color: #1e1a14;
    letter-spacing: 0.01em;
}

.doc-info em,
.doc-info i {
    font-style: italic;
    color: #3a342c;
}

.doc-info a {
    color: #8a7e18;
    text-decoration: underline;
    text-decoration-color: rgba(187, 172, 36, 0.45);
    text-underline-offset: 3px;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.45s ease-in-out;
}

.doc-info a:hover {
    color: #BBAC24;
    text-decoration-color: #BBAC24;
}

.doc-info a:visited {
    color: #6e6412;
}

.doc-info hr {
    border: none;
    border-top: 1px solid #E6DDDD;
    margin-top: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 4px -1px rgba(187, 172, 36, 0.07);
}

.doc-info div {
    margin-bottom: 16px;
}

.doc-info div:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .doc-info {
        padding: 32px 16px;
    }

    .doc-info h1 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .doc-info h2 {
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .doc-info {
        padding: 16px 8px;
    }

    .doc-info h1 {
        font-size: 24px;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }

    .doc-info hr {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

.prd {
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.prd * {
    box-sizing: border-box;
}

@media print {
    .prd {
        max-width: 100%;
        background: #fff;
    }

    .prd .art-img-wrap img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    .prd .breadcrumb-bar {
        display: none;
    }

    .prd .art-body {
        font-size: 12pt;
        line-height: 1.65;
    }

    .prd .art-lead {
        font-size: 10pt;
    }

    .prd .art-img-wrap {
        page-break-after: always;
    }

    .prd .schema-block {
        display: none;
    }
}

.prd .breadcrumb-bar {
    padding: 16px 32px;
    background: #f5f4ee;
    border-bottom: 1px solid #e6dddd;
}

.prd .breadcrumb-bar nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.prd .bc-link {
    font-size: 15px;
    line-height: 1.4;
    color: #5a5430;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd .bc-link:hover,
.prd .bc-link:focus {
    color: #BBAC24;
    outline: none;
}

.prd .bc-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #BBAC24;
    opacity: 0.5;
    vertical-align: middle;
}

.prd .bc-current {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2508;
    letter-spacing: 0.01em;
}

.prd .art-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: stretch;
}

.prd .art-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 0;
}

.prd .art-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) sepia(0.18);
    transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    loading: lazy;
}

.prd .art-img-wrap:hover img {
    filter: saturate(1) sepia(0);
    transform: scale(1.03);
}

.prd .art-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(187, 172, 36, 0.18) 0%, transparent 55%, rgba(191, 201, 163, 0.22) 100%);
    pointer-events: none;
}

.prd .art-intro {
    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(170deg, #f5f4ee 0%, #fff 60%, #e6dddd33 100%);
}

.prd .art-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #7a6e10;
    background: linear-gradient(90deg, rgba(187, 172, 36, 0.13) 0%, rgba(191, 201, 163, 0.18) 100%);
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 16px;
    width: fit-content;
}

.prd .art-h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a04;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 12px rgba(187, 172, 36, 0.10);
    word-break: break-word;
}

.prd .art-lead {
    font-size: 15px;
    line-height: 1.65;
    color: #3d3820;
    margin: 0 0 32px 0;
    max-width: 480px;
}

.prd .art-meta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.prd .art-meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #6b6030;
    letter-spacing: 0.01em;
}

.prd .art-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #BBAC24;
    display: inline-block;
}

.prd .art-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #BBAC24 40%, #BFC9A3 60%, transparent 100%);
    margin: 0 32px;
    border-radius: 2px;
}

.prd .art-body-wrap {
    padding: 32px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1400px;
}

.prd .art-body {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2508;
    letter-spacing: 0.01em;
}

.prd .art-body p {
    margin: 0 0 16px 0;
}

.prd .art-body h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a04;
    letter-spacing: 0.01em;
    margin: 32px 0 16px 0;
    text-shadow: 0 1px 6px rgba(187, 172, 36, 0.08);
}

.prd .art-body h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #1e1a04;
    letter-spacing: 0.02em;
    margin: 16px 0 8px 0;
    font-weight: 700;
}

.prd .art-body ins {
    text-decoration: underline;
    text-decoration-color: #BBAC24;
    text-underline-offset: 3px;
    color: inherit;
}

.prd .art-body ul {
    margin: 0 0 16px 0;
    padding-left: 32px;
}

.prd .art-body li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.prd .art-body blockquote {
    margin: 16px 0;
    padding: 16px 32px;
    background: linear-gradient(90deg, rgba(187, 172, 36, 0.09) 0%, rgba(191, 201, 163, 0.09) 100%);
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.85;
    color: #3d3820;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.prd .art-body cite {
    display: block;
    font-size: 15px;
    color: #7a6e10;
    margin-top: 8px;
    font-style: normal;
}

.prd .art-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.prd .art-body th {
    background: linear-gradient(90deg, #BBAC24 0%, #BFC9A3 100%);
    color: #1e1a04;
    padding: 8px 16px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.prd .art-body td {
    padding: 8px 16px;
    border-bottom: 1px solid #e6dddd;
    color: #2a2508;
}

.prd .art-body tr:last-child td {
    border-bottom: none;
}

.prd .art-body tfoot td {
    background: rgba(191, 201, 163, 0.18);
    font-weight: 600;
}

.prd .art-body details {
    margin: 16px 0;
    border-radius: 12px;
    border: 1px solid #e6dddd;
    overflow: hidden;
}

.prd .art-body summary {
    padding: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #1e1a04;
    background: rgba(187, 172, 36, 0.06);
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd .art-body summary:hover {
    background: rgba(187, 172, 36, 0.14);
}

.prd .art-body details[open] summary {
    border-bottom: 1px solid #e6dddd;
}

.prd .art-body details>*:not(summary) {
    padding: 16px;
}

.prd .art-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prd .aside-card {
    background: linear-gradient(160deg, #f5f4ee 0%, #fff 100%);
    border-radius: 20px;
    padding: 16px;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.prd .aside-card-ttl {
    font-size: 15px;
    line-height: 1.4;
    color: #1e1a04;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(187, 172, 36, 0.25);
}

.prd .aside-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.prd .aside-links li a {
    font-size: 15px;
    line-height: 1.4;
    color: #5a5430;
    text-decoration: none;
    letter-spacing: 0.01em;
    display: block;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd .aside-links li a:hover,
.prd .aside-links li a:focus {
    background: rgba(187, 172, 36, 0.1);
    color: #1e1a04;
    outline: none;
}

.prd .aside-cta-btn {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(120deg, #BBAC24 0%, #BFC9A3 100%);
    color: #1e1a04;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd .aside-cta-btn:hover,
.prd .aside-cta-btn:focus {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    outline: none;
}

.prd .aside-fact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prd .aside-fact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    background: rgba(191, 201, 163, 0.15);
}

.prd .aside-fact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.prd .aside-fact-txt {
    font-size: 15px;
    line-height: 1.4;
    color: #3d3820;
    letter-spacing: 0.01em;
}

@keyframes prd-split-open {
    0% {
        clip-path: inset(0 50% 0 50%);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0% 0 0%);
        opacity: 1;
    }
}

.prd .art-top {
    animation: prd-split-open 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes prd-fade-up {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.prd .art-body-wrap {
    animation: prd-fade-up 0.55s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 992px) {
    .prd .art-top {
        grid-template-columns: 1fr;
    }

    .prd .art-img-wrap {
        min-height: 280px;
        border-radius: 0 0 20px 20px;
    }

    .prd .art-h1 {
        font-size: 24px;
    }

    .prd .art-body-wrap {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .prd .breadcrumb-bar {
        padding: 16px;
    }

    .prd .art-intro {
        padding: 16px;
    }

    .prd .art-h1 {
        font-size: 24px;
    }

    .prd .art-body-wrap {
        padding: 16px 8px;
        gap: 16px;
    }

    .prd .art-divider {
        margin: 0 8px;
    }
}

.lrn-prog {
    max-width: 100%;
    overflow-x: hidden;
}

.lrn-prog .pg-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.lrn-prog .pill-tag {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    background: #BBAC24;
    color: #fff;
    font-weight: 600;
}

.lrn-prog .ttl-blk {
    padding: 80px 0 64px;
    background: #fff;
    position: relative;
}

.lrn-prog .ttl-blk .pg-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
}

.lrn-prog .ttl-col-img {
    flex: 0 0 45%;
    position: relative;
}

.lrn-prog .ttl-col-txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 32px 32px;
}

.lrn-prog .img-dbl-border {
    position: relative;
    display: block;
}

.lrn-prog .img-dbl-border::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid #BBAC24;
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .img-dbl-border::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 2px solid #BFC9A3;
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.lrn-prog .img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .img-frame:hover img {
    transform: scale(1.03);
}

.lrn-prog .img-frame .scan-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 3px,
            rgba(187, 172, 36, 0.07) 3px,
            rgba(187, 172, 36, 0.07) 4px);
    border-radius: 12px;
    pointer-events: none;
}

.lrn-prog .img-frame .border-hover {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    pointer-events: none;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .img-frame:hover .border-hover {
    border-color: #BBAC24;
}

.lrn-prog .flow-arrow {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.lrn-prog .ttl-col-txt .pill-tag {
    margin-bottom: 16px;
    align-self: flex-start;
}

.lrn-prog .ttl-col-txt h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a00;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(187, 172, 36, 0.13);
}

.lrn-prog .ttl-col-txt .sub-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3520;
    max-width: 420px;
    margin: 0 0 32px;
}

.lrn-prog .ttl-col-txt .read-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.lrn-prog .ttl-col-txt .read-line .dash-line {
    flex: 1 1 0;
    height: 2px;
    background: linear-gradient(90deg, #BBAC24 0%, transparent 100%);
    border-radius: 2px;
    max-width: 80px;
}

.lrn-prog .ttl-col-txt .read-line .read-label {
    font-size: 15px;
    line-height: 1.4;
    color: #7a7020;
    letter-spacing: 0.02em;
}

.lrn-prog .prog-detail {
    padding: 80px 0;
    background: #f7f5e6;
    position: relative;
}

.lrn-prog .prog-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 60px at 15% 30%, rgba(191, 201, 163, 0.18) 0%, transparent 70%),
        radial-gradient(circle 80px at 80% 70%, rgba(187, 172, 36, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.lrn-prog .prog-detail .pg-wrap {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.lrn-prog .detail-main {
    flex: 0 0 72%;
}

.lrn-prog .detail-side {
    flex: 1 1 0;
}

.lrn-prog .detail-main h2 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a00;
    margin: 0 0 16px;
    text-shadow: 1px 2px 0 rgba(187, 172, 36, 0.18);
}

.lrn-prog .detail-main .intro-short {
    font-size: 24px;
    line-height: 1.4;
    color: #3a3520;
    margin: 0 0 16px;
    max-width: 600px;
}

.lrn-prog .detail-main .body-para {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3520;
    margin: 0 0 16px;
    max-width: 640px;
}

.lrn-prog .detail-main .body-para.narrow {
    max-width: 440px;
}

.lrn-prog .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.lrn-prog .metric-cell {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .metric-cell:hover {
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    transform: translateY(-2px);
}

.lrn-prog .metric-cell .m-val {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #BBAC24;
    font-weight: 700;
}

.lrn-prog .metric-cell .m-label {
    font-size: 15px;
    line-height: 1.4;
    color: #3a3520;
}

.lrn-prog .detail-side .side-note {
    background: #fff;
    border-radius: 12px;
    padding: 32px 16px;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px;
}

.lrn-prog .detail-side .side-note h4 {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a00;
    margin: 0;
    text-shadow: 0 1px 4px rgba(187, 172, 36, 0.1);
}

.lrn-prog .detail-side .side-note p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3520;
    margin: 0;
}

.lrn-prog .detail-side .side-note .pill-tag {
    align-self: flex-start;
}

.lrn-prog .curriculum {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.lrn-prog .curriculum .rings-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden;
}

.lrn-prog .curriculum .pg-wrap {
    position: relative;
}

.lrn-prog .curriculum .cur-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 32px;
}

.lrn-prog .curriculum .cur-head h2 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a00;
    margin: 0;
    flex: 0 0 auto;
    text-shadow: 0 2px 0 rgba(191, 201, 163, 0.4);
}

.lrn-prog .curriculum .cur-head .head-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3520;
    max-width: 360px;
    margin: 0;
    padding-bottom: 8px;
}

.lrn-prog .mod-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lrn-prog .mod-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    background: #f7f5e6;
    border-radius: 12px;
    padding: 16px 32px 16px 16px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease-in-out;
    position: relative;
}

.lrn-prog .mod-item:hover {
    background: #fff;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.lrn-prog .mod-item:hover .mod-glow {
    opacity: 1;
}

.lrn-prog .mod-glow {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    box-shadow: 0 0 18px 4px rgba(187, 172, 36, 0.18);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .mod-num {
    font-size: 56px;
    line-height: 1.15;
    color: rgba(187, 172, 36, 0.18);
    font-weight: 700;
    min-width: 64px;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    user-select: none;
}

.lrn-prog .mod-body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.lrn-prog .mod-body h5 {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a00;
    margin: 0;
    letter-spacing: 0.01em;
}

.lrn-prog .mod-body p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3520;
    margin: 0;
    max-width: 600px;
}

.lrn-prog .mod-pill {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 80px;
}

.lrn-prog .mod-pill .dur-pill {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.4;
    background: #BFC9A3;
    color: #2a2e1a;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.lrn-prog .cur-foot {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.lrn-prog .cur-foot .enrol-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 600;
    background: linear-gradient(118deg, #BBAC24 0%, #d4c52a 60%, #BFC9A3 100%);
    color: #1e1a00;
    border: none;
    cursor: pointer;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.lrn-prog .cur-foot .enrol-btn:hover {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.lrn-prog .cur-foot .foot-note {
    font-size: 15px;
    line-height: 1.65;
    color: #7a7020;
}

.lrn-prog .blur-in {
    animation: blurReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lrn-prog .blur-in-2 {
    animation: blurReveal 0.65s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lrn-prog .blur-in-3 {
    animation: blurReveal 0.6s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes blurReveal {
    from {
        filter: blur(8px);
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .lrn-prog .ttl-blk .pg-wrap {
        flex-direction: column;
    }

    .lrn-prog .ttl-col-img {
        flex: 0 0 auto;
    }

    .lrn-prog .ttl-col-txt {
        padding: 16px 0 0;
    }

    .lrn-prog .ttl-col-txt h1 {
        font-size: 56px;
    }

    .lrn-prog .prog-detail .pg-wrap {
        flex-direction: column;
    }

    .lrn-prog .detail-main {
        flex: 0 0 auto;
    }

    .lrn-prog .detail-side .side-note {
        position: static;
    }

    .lrn-prog .curriculum .cur-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .lrn-prog .mod-item {
        flex-wrap: wrap;
        padding: 16px;
    }

    .lrn-prog .mod-pill {
        justify-content: flex-start;
        min-width: 0;
    }
}

@media (max-width: 576px) {
    .lrn-prog .pg-wrap {
        padding: 0 16px;
    }

    .lrn-prog .ttl-blk {
        padding: 48px 0 32px;
    }

    .lrn-prog .ttl-col-txt h1 {
        font-size: 56px;
    }

    .lrn-prog .prog-detail {
        padding: 48px 0;
    }

    .lrn-prog .detail-main h2 {
        font-size: 56px;
    }

    .lrn-prog .metrics-grid {
        grid-template-columns: 1fr;
    }

    .lrn-prog .curriculum {
        padding: 48px 0;
    }

    .lrn-prog .curriculum .cur-head h2 {
        font-size: 56px;
    }

    .lrn-prog .cur-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .lrn-prog .mod-num {
        font-size: 24px;
        min-width: 32px;
    }
}

.entr-pg {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.entr-pg .reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: revealUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.entr-pg .reveal-d1 {
    animation-delay: 0.08s;
}

.entr-pg .reveal-d2 {
    animation-delay: 0.18s;
}

.entr-pg .reveal-d3 {
    animation-delay: 0.28s;
}

.entr-pg .reveal-d4 {
    animation-delay: 0.38s;
}

.entr-pg .reveal-d5 {
    animation-delay: 0.48s;
}

.entr-pg .reveal-d6 {
    animation-delay: 0.58s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entr-pg .stroke-deco {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 32px;
    right: 32px;
    pointer-events: none;
}

.entr-pg .stroke-deco span {
    display: block;
    height: 2px;
    background: #BBAC24;
    border-radius: 2px;
    opacity: 0.55;
}

.entr-pg .stroke-deco span:nth-child(1) {
    width: 32px;
}

.entr-pg .stroke-deco span:nth-child(2) {
    width: 22px;
}

.entr-pg .stroke-deco span:nth-child(3) {
    width: 16px;
}

.entr-pg .stroke-deco span:nth-child(4) {
    width: 28px;
}

.entr-pg .stroke-deco span:nth-child(5) {
    width: 12px;
}

.entr-pg .ttl-blk {
    position: relative;
    padding: 80px 32px 48px 32px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.entr-pg .ttl-text {
    flex: 1 1 0;
    min-width: 0;
}

.entr-pg .ttl-text .eyebrow {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #BBAC24;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.entr-pg .ttl-text .h1-main {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 1px 2px 0px rgba(187, 172, 36, 0.13), 0 4px 18px rgba(187, 172, 36, 0.07);
}

.entr-pg .ttl-text .h2-sub {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #3a3530;
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(191, 201, 163, 0.18);
}

.entr-pg .ttl-text .desc {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #4a4540;
    max-width: 520px;
}

.entr-pg .ttl-img-card {
    flex: 0 0 320px;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11), -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    align-self: flex-start;
    margin-top: 8px;
}

.entr-pg .ttl-img-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.entr-pg .ttl-img-card .scanline {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.045) 0px,
            rgba(0, 0, 0, 0.045) 1px,
            transparent 1px,
            transparent 4px);
}

.entr-pg .ttl-img-card .corner-acc {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #BBAC24 60%, transparent 60%);
    border-radius: 12px 0 4px 0;
    pointer-events: none;
}

.entr-pg .wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.entr-pg .wave-divider svg {
    display: block;
    width: 100%;
}

.entr-pg .exp-blk {
    padding: 64px 32px 48px 32px;
    background: linear-gradient(170deg, #f7f5ee 0%, #fff 60%, #f2f0eb 100%);
    position: relative;
}

.entr-pg .exp-blk .exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.entr-pg .exp-blk .exp-narr {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entr-pg .exp-blk .exp-narr .h2-exp {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: 0 3px 14px rgba(187, 172, 36, 0.10);
}

.entr-pg .exp-blk .exp-narr .narr-body {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #3a3530;
}

.entr-pg .exp-blk .exp-narr .narr-body.narrow {
    max-width: 380px;
}

.entr-pg .steps-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.entr-pg .steps-col::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, #BBAC24 0%, #BFC9A3 100%);
    border-radius: 2px;
    opacity: 0.45;
}

.entr-pg .step-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.entr-pg .step-num {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #BBAC24 0%, #BFC9A3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    position: relative;
    z-index: 1;
}

.entr-pg .step-body {
    padding-top: 8px;
}

.entr-pg .step-body .step-ttl {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.entr-pg .step-body .step-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    letter-spacing: 0.01em;
}

.entr-pg .val-blk {
    padding: 64px 32px;
    background: #fff;
    position: relative;
}

.entr-pg .val-blk .val-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.entr-pg .val-blk .val-head {
    flex: 1 1 0;
}

.entr-pg .val-blk .val-head .h2-val {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(191, 201, 163, 0.22);
    margin-bottom: 16px;
}

.entr-pg .val-blk .val-head .val-intro {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3530;
    max-width: 460px;
    letter-spacing: 0.01em;
}

.entr-pg .val-sidebar {
    flex: 0 0 300px;
    width: 300px;
    background: linear-gradient(160deg, #BBAC24 0%, #BFC9A3 100%);
    border-radius: 12px;
    padding: 32px;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entr-pg .val-sidebar .sidebar-ttl {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.entr-pg .val-sidebar .sidebar-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.entr-pg .val-sidebar .s-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 6px;
    opacity: 0.85;
}

.entr-pg .val-sidebar .s-text {
    font-size: 15px;
    line-height: 1.65;
    color: #fff;
    letter-spacing: 0.01em;
}

.entr-pg .val-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.entr-pg .val-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    position: relative;
}

.entr-pg .val-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.entr-pg .val-img-wrap .corner-acc {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(315deg, #BBAC24 60%, transparent 60%);
    border-radius: 0 0 12px 0;
    pointer-events: none;
}

.entr-pg .val-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entr-pg .val-text-col .val-body {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3530;
    letter-spacing: 0.01em;
}

.entr-pg .val-text-col .val-body.narrow {
    max-width: 340px;
}

.entr-pg .proof-blk {
    padding: 64px 32px;
    background: linear-gradient(158deg, #f5f3ec 0%, #eceae3 100%);
    position: relative;
}

.entr-pg .proof-blk .proof-top {
    margin-bottom: 32px;
}

.entr-pg .proof-blk .h2-proof {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: 0 3px 14px rgba(187, 172, 36, 0.09);
    margin-bottom: 16px;
}

.entr-pg .proof-blk .proof-intro {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3530;
    max-width: 540px;
    letter-spacing: 0.01em;
}

.entr-pg .proof-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.entr-pg .proof-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11), -1px 4px 22px -1px rgba(191, 201, 163, 0.11);
    position: relative;
}

.entr-pg .proof-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.entr-pg .proof-img-wrap .scanline {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.03) 0px,
            rgba(0, 0, 0, 0.03) 1px,
            transparent 1px,
            transparent 5px);
}

.entr-pg .proof-data {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.entr-pg .proof-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.entr-pg .proof-table thead tr {
    background: linear-gradient(90deg, #BBAC24 0%, #BFC9A3 100%);
}

.entr-pg .proof-table thead th {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.entr-pg .proof-table tbody tr {
    border-bottom: 1px solid #E6DDDD;
    transition: background 0.5s ease-in-out;
}

.entr-pg .proof-table tbody tr:last-child {
    border-bottom: none;
}

.entr-pg .proof-table tbody tr:hover {
    background: rgba(187, 172, 36, 0.06);
}

.entr-pg .proof-table tbody td {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3530;
    padding: 12px 16px;
    letter-spacing: 0.01em;
    vertical-align: top;
}

.entr-pg .proof-table tbody td.td-label {
    font-weight: 600;
    color: #1b1b1b;
    white-space: nowrap;
}

.entr-pg .proof-narr {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3530;
    letter-spacing: 0.01em;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.entr-pg .rating-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.entr-pg .rating-score {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #BBAC24;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.entr-pg .rating-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entr-pg .rating-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.entr-pg .star {
    width: 16px;
    height: 16px;
    display: block;
}

.entr-pg .rating-label {
    font-size: 15px;
    line-height: 1.4;
    color: #4a4540;
    letter-spacing: 0.01em;
}

.entr-pg .rating-label strong {
    color: #1b1b1b;
}

@media (max-width: 992px) {
    .entr-pg .ttl-blk {
        flex-direction: column;
        padding: 48px 16px 32px 16px;
    }

    .entr-pg .ttl-img-card {
        flex: 0 0 auto;
        width: 100%;
    }

    .entr-pg .ttl-text .h1-main {
        font-size: 56px;
    }

    .entr-pg .exp-blk .exp-grid {
        grid-template-columns: 1fr;
    }

    .entr-pg .val-blk .val-top {
        flex-direction: column;
    }

    .entr-pg .val-sidebar {
        width: 100%;
        flex: 0 0 auto;
    }

    .entr-pg .val-img-row {
        grid-template-columns: 1fr;
    }

    .entr-pg .proof-layout {
        grid-template-columns: 1fr;
    }

    .entr-pg .h2-exp,
    .entr-pg .h2-val,
    .entr-pg .h2-proof {
        font-size: 24px;
    }

    .entr-pg .exp-blk .exp-narr .h2-exp {
        font-size: 24px;
    }

    .entr-pg .val-blk .val-head .h2-val {
        font-size: 24px;
    }

    .entr-pg .proof-blk .h2-proof {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .entr-pg .ttl-text .h1-main {
        font-size: 56px;
    }

    .entr-pg .exp-blk,
    .entr-pg .val-blk,
    .entr-pg .proof-blk {
        padding: 32px 16px;
    }

    .entr-pg .rating-score {
        font-size: 24px;
    }

    .entr-pg .proof-table thead th,
    .entr-pg .proof-table tbody td {
        padding: 8px;
        font-size: 15px;
    }
}

.pr-pg {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.pr-pg .pg-band-top {
    height: 4px;
    background: linear-gradient(113deg, #BBAC24 0%, #BFC9A3 55%, #E6DDDD 100%);
}

.pr-pg .pg-intro {
    padding: 32px 32px 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    border-bottom: 2px solid #E6DDDD;
}

.pr-pg .pg-intro__label {
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #7a6e00;
    line-height: 1.4;
    text-transform: uppercase;
    background: linear-gradient(113deg, #BBAC24 0%, #BFC9A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.pr-pg .pg-intro__hdg {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #2a2520;
    margin: 0;
    text-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    flex: 1;
}

.pr-pg .pg-intro__sub {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    max-width: 340px;
    margin: 0;
    flex-shrink: 0;
}

.pr-pg .divider-curve-a {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.pr-pg .divider-curve-a svg {
    display: block;
    width: 100%;
}

.pr-pg .posts-belt {
    padding: 32px 32px 16px 32px;
    background: #fff;
}

.pr-pg .posts-belt__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pr-pg .badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #BBAC24, #BFC9A3);
    color: #2a2520;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.pr-pg .posts-belt__count-lbl {
    font-size: 15px;
    color: #6a6050;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.pr-pg .posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pr-pg .post-card {
    border-radius: 12px;
    background: #fff;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: 3px solid #E6DDDD;
    position: relative;
}

.pr-pg .post-card:hover {
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    transform: translateY(-4px) rotate(-0.5deg);
}

.pr-pg .post-card__img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.pr-pg .post-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pr-pg .post-card:hover .post-card__img-wrap img {
    transform: scale(1.06);
}

.pr-pg .post-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pr-pg .post-card__ttl {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #2a2520;
    margin: 0;
    font-weight: 700;
}

.pr-pg .post-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    margin: 0;
    flex: 1;
}

.pr-pg .post-card__lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background: linear-gradient(113deg, #BBAC24 0%, #BFC9A3 100%);
    color: #2a2520;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-decoration: none;
    transition: transform 0.1s ease-in-out, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    align-self: flex-start;
}

.pr-pg .post-card__lnk:hover {
    transform: scale(1.04);
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.pr-pg .post-card__lnk:focus {
    outline: 2px solid #BBAC24;
    outline-offset: 2px;
}

.pr-pg .post-card__lnk svg {
    flex-shrink: 0;
}

.pr-pg .post-card__no-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(113deg, #E6DDDD 0%, #BFC9A3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-pg .post-card__no-img-icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.pr-pg .divider-curve-b {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.pr-pg .divider-curve-b svg {
    display: block;
    width: 100%;
}

.pr-pg .feat-strip {
    padding: 32px 32px 32px 32px;
    background: linear-gradient(170deg, #f7f5ee 0%, #fff 100%);
    position: relative;
}

.pr-pg .feat-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23BBAC24' fill-opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.pr-pg .feat-strip__grid {
    display: grid;
    grid-template-columns: 80px 1fr 80px 1fr;
    gap: 16px;
    align-items: start;
    position: relative;
}

.pr-pg .feat-strip__icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.pr-pg .feat-strip__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #BBAC24, #BFC9A3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.pr-pg .feat-strip__icon-wrap svg {
    width: 28px;
    height: 28px;
}

.pr-pg .feat-strip__text-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pr-pg .feat-strip__hdg {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #2a2520;
    margin: 0;
    text-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.pr-pg .feat-strip__para {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    margin: 0;
}

.pr-pg .divider-curve-c {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.pr-pg .divider-curve-c svg {
    display: block;
    width: 100%;
}

.pr-pg .media-row {
    padding: 32px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.pr-pg .media-row__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    position: relative;
}

.pr-pg .media-row__img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pr-pg .media-row__img-wrap:hover img {
    transform: scale(1.04);
}

.pr-pg .media-row__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(113deg, rgba(187, 172, 36, 0.18) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 12px;
}

.pr-pg .media-row__dots {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: repeat(4, 8px);
    grid-template-rows: repeat(4, 8px);
    gap: 4px;
    pointer-events: none;
}

.pr-pg .media-row__dot {
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #BBAC24;
    opacity: 0.55;
}

.pr-pg .media-row__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pr-pg .media-row__hdg {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #2a2520;
    margin: 0;
    text-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.pr-pg .media-row__para {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    margin: 0;
}

.pr-pg .media-row__para.narrow {
    max-width: 320px;
}

.pr-pg .media-row__badge-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.pr-pg .media-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #E6DDDD;
    font-size: 15px;
    color: #2a2520;
    line-height: 1.4;
}

.pr-pg .media-badge svg {
    flex-shrink: 0;
}

.pr-pg .divider-curve-d {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.pr-pg .divider-curve-d svg {
    display: block;
    width: 100%;
}

.pr-pg .contact-strip {
    padding: 32px;
    background: linear-gradient(170deg, #f5f3e8 0%, #edeae0 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    border-top: 3px solid #BFC9A3;
    border-bottom: 3px solid #BFC9A3;
}

.pr-pg .contact-strip__label-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.pr-pg .contact-strip__hdg {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #2a2520;
    margin: 0;
    text-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
}

.pr-pg .contact-strip__sub {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4540;
    margin: 0;
}

.pr-pg .contact-strip__items {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}

.pr-pg .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    text-decoration: none;
    color: #2a2520;
    font-size: 15px;
    line-height: 1.4;
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pr-pg .contact-item:hover {
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    transform: translateY(-2px);
}

.pr-pg .contact-item:focus {
    outline: 2px solid #BBAC24;
    outline-offset: 2px;
}

.pr-pg .contact-item svg {
    flex-shrink: 0;
}

.pr-pg .pg-band-bot {
    height: 4px;
    background: linear-gradient(113deg, #E6DDDD 0%, #BFC9A3 55%, #BBAC24 100%);
}

@media (max-width: 1200px) {
    .pr-pg .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-pg .feat-strip__grid {
        grid-template-columns: 64px 1fr 64px 1fr;
    }
}

@media (max-width: 992px) {
    .pr-pg .pg-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pr-pg .pg-intro__hdg {
        font-size: 56px;
    }

    .pr-pg .pg-intro__sub {
        max-width: 100%;
    }

    .pr-pg .feat-strip__grid {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
    }

    .pr-pg .media-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pr-pg .contact-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .pr-pg .pg-intro {
        padding: 16px;
    }

    .pr-pg .pg-intro__hdg {
        font-size: 24px;
    }

    .pr-pg .posts-belt {
        padding: 16px;
    }

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

    .pr-pg .feat-strip {
        padding: 16px;
    }

    .pr-pg .feat-strip__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pr-pg .feat-strip__icon-col {
        display: none;
    }

    .pr-pg .media-row {
        padding: 16px;
    }

    .pr-pg .contact-strip {
        padding: 16px;
    }

    .pr-pg .contact-strip__items {
        flex-direction: column;
        gap: 8px;
    }
}

.abt-us {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.abt-us .pulse-bg {
    animation: bgPulse 6s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.93;
    }
}

.abt-us .dbl-border {
    outline: 1px solid rgba(187, 172, 36, 0.18);
    outline-offset: 6px;
}

.abt-us .emerge {
    animation: emergeBlur 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes emergeBlur {
    from {
        filter: blur(8px);
        opacity: 0;
    }

    to {
        filter: blur(0);
        opacity: 1;
    }
}

.abt-us .emerge-delay-1 {
    animation-delay: 0.1s;
}

.abt-us .emerge-delay-2 {
    animation-delay: 0.22s;
}

.abt-us .emerge-delay-3 {
    animation-delay: 0.34s;
}

.abt-us .ttl-blk {
    padding: 32px 32px 64px 32px;
    background: #fff;
    position: relative;
}

.abt-us .ttl-blk__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.abt-us .ttl-blk__text {
    flex: 1 1 55%;
    padding: 32px 0 0 0;
}

.abt-us .ttl-blk__eyebrow {
    font-size: 15px;
    letter-spacing: 0.14em;
    color: #BBAC24;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.4;
}

.abt-us .ttl-blk__h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1810;
    margin: 0 0 16px 0;
    text-shadow: 1px 2px 8px rgba(187, 172, 36, 0.10);
}

.abt-us .ttl-blk__sub {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3628;
    max-width: 480px;
    margin: 0;
}

.abt-us .ttl-blk__img-col {
    flex: 0 0 38%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.abt-us .ttl-blk__img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.abt-us .ttl-blk__img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(191, 201, 163, 0.28) 0%, transparent 60%, rgba(187, 172, 36, 0.18) 100%);
    z-index: 1;
    pointer-events: none;
}

.abt-us .ttl-blk__img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background: rgba(191, 201, 163, 0.12);
    z-index: 2;
    pointer-events: none;
}

.abt-us .ttl-blk__img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: sepia(0.18) contrast(1.06) brightness(0.97) saturate(0.88);
    transition: filter 0.5s ease-in-out;
}

.abt-us .ttl-blk__img-frame:hover .ttl-blk__img {
    filter: sepia(0.08) contrast(1.04) brightness(1.0) saturate(1.0);
}

.abt-us .ttl-blk__deco {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(187, 172, 36, 0.22);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}

.abt-us .story-blk {
    background: #E6DDDD;
    padding: 64px 32px;
}

.abt-us .story-blk__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.abt-us .story-blk__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .story-blk__h2 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1810;
    margin: 0 0 8px 0;
    text-shadow: 1px 3px 10px rgba(187, 172, 36, 0.13);
}

.abt-us .story-blk__lead {
    font-size: 24px;
    line-height: 1.4;
    color: #2e2b1f;
    margin: 0;
    max-width: 560px;
}

.abt-us .story-blk__body {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3628;
    margin: 0;
}

.abt-us .story-blk__body.wide {
    max-width: 100%;
}

.abt-us .story-blk__body.narrow {
    max-width: 480px;
}

.abt-us .story-blk__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .contrast-nums {
    background: #fff;
    border-radius: 12px;
    padding: 32px 16px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.abt-us .contrast-nums__row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    justify-content: center;
}

.abt-us .contrast-nums__before {
    font-size: 56px;
    line-height: 1.15;
    color: #c8c0a0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.abt-us .contrast-nums__after {
    font-size: 70px;
    line-height: 1.15;
    color: #BBAC24;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.abt-us .contrast-nums__label {
    font-size: 15px;
    line-height: 1.4;
    color: #5a5440;
    text-align: center;
}

.abt-us .contrast-nums__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(187, 172, 36, 0.22), transparent);
    margin: 4px 0;
}

.abt-us .story-blk__img-sm {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.abt-us .story-blk__img-sm img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: sepia(0.12) saturate(0.9) brightness(0.98);
    transition: filter 0.6s ease-in-out;
}

.abt-us .story-blk__img-sm:hover img {
    filter: sepia(0.04) saturate(1.0) brightness(1.01);
}

.abt-us .team-blk {
    background: #fff;
    padding: 64px 32px;
}

.abt-us .team-blk__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.abt-us .team-blk__hd {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    max-width: 520px;
}

.abt-us .team-blk__h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #1b1810;
    margin: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(187, 172, 36, 0.09);
}

.abt-us .team-blk__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3628;
    margin: 0;
}

.abt-us .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.abt-us .team-card {
    border-radius: 12px;
    background: #f7f5ef;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    padding: 32px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.abt-us .team-card:hover {
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
    transform: translateY(-4px);
}

.abt-us .team-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #BFC9A3 0%, #E6DDDD 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.abt-us .team-card__avatar svg {
    width: 32px;
    height: 32px;
}

.abt-us .team-card__name {
    font-size: 15px;
    line-height: 1.4;
    color: #1b1810;
    margin: 0;
    letter-spacing: 0.01em;
}

.abt-us .team-card__role {
    font-size: 15px;
    line-height: 1.4;
    color: #BBAC24;
    margin: 0;
}

.abt-us .team-card__bio {
    font-size: 15px;
    line-height: 1.65;
    color: #5a5440;
    margin: 0;
}

.abt-us .team-card__accent {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(187, 172, 36, 0.28);
}

.abt-us .vals-blk {
    background: #BFC9A3;
    padding: 64px 32px;
    position: relative;
}

.abt-us .vals-blk__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.abt-us .vals-blk__left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .vals-blk__h2 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1b1810;
    margin: 0;
    text-shadow: 1px 2px 8px rgba(187, 172, 36, 0.15);
}

.abt-us .vals-blk__intro {
    font-size: 15px;
    line-height: 1.65;
    color: #2e2b1f;
    margin: 0;
}

.abt-us .vals-blk__img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    margin-top: 8px;
}

.abt-us .vals-blk__img img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: sepia(0.15) saturate(0.85) brightness(0.97);
    transition: filter 0.55s ease-in-out;
}

.abt-us .vals-blk__img:hover img {
    filter: sepia(0.05) saturate(1.0) brightness(1.01);
}

.abt-us .vals-blk__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .val-item {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    transition: background 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.abt-us .val-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.abt-us .val-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, #BBAC24 0%, #BFC9A3 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.abt-us .val-item__icon svg {
    width: 20px;
    height: 20px;
}

.abt-us .val-item__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt-us .val-item__h {
    font-size: 15px;
    line-height: 1.4;
    color: #1b1810;
    margin: 0;
    letter-spacing: 0.01em;
}

.abt-us .val-item__p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3628;
    margin: 0;
}

@media (max-width: 992px) {
    .abt-us .ttl-blk__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .abt-us .ttl-blk__img-col {
        flex: 0 0 auto;
        width: 100%;
        align-items: flex-start;
    }

    .abt-us .ttl-blk__img {
        height: 280px;
    }

    .abt-us .story-blk__inner {
        grid-template-columns: 1fr;
    }

    .abt-us .story-blk__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abt-us .contrast-nums {
        flex: 1 1 200px;
    }

    .abt-us .story-blk__img-sm {
        flex: 1 1 200px;
    }

    .abt-us .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-us .vals-blk__inner {
        flex-direction: column;
    }

    .abt-us .vals-blk__left {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .abt-us .ttl-blk {
        padding: 16px 16px 32px 16px;
    }

    .abt-us .ttl-blk__h1 {
        font-size: 24px;
    }

    .abt-us .story-blk {
        padding: 32px 16px;
    }

    .abt-us .story-blk__h2 {
        font-size: 24px;
    }

    .abt-us .team-blk {
        padding: 32px 16px;
    }

    .abt-us .team-grid {
        grid-template-columns: 1fr;
    }

    .abt-us .vals-blk {
        padding: 32px 16px;
    }

    .abt-us .vals-blk__h2 {
        font-size: 24px;
    }

    .abt-us .contrast-nums__before {
        font-size: 24px;
    }

    .abt-us .contrast-nums__after {
        font-size: 56px;
    }

    .abt-us .story-blk__sidebar {
        flex-direction: column;
    }
}

.ctus-pg {
    max-width: 100%;
    overflow-x: hidden;
    background: #fff;
}

.ctus-pg .pg-bound {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.ctus-pg .letter-drop-hed span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-28px);
    animation: ldrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ldrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctus-pg .anchor-right {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    padding: 64px 0 48px;
    position: relative;
}

.ctus-pg .anchor-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, #f7f5ee 0%, #ede9d8 60%, #e8e2cc 100%);
    z-index: 0;
}

.ctus-pg .noise-tex {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.ctus-pg .anchor-left-col {
    flex: 0 0 38%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    padding: 32px 0;
}

.ctus-pg .anchor-right-col {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 32px 0;
}

.ctus-pg .pre-hed {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #6a5f1a;
    margin-bottom: 8px;
    font-weight: 500;
}

.ctus-pg .pg-hed {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1e1a08;
    text-shadow: 2px 3px 0px rgba(187, 172, 36, 0.18), 0 1px 12px rgba(187, 172, 36, 0.09);
    margin: 0 0 16px;
}

.ctus-pg .hed-sub {
    font-size: 15px;
    line-height: 1.65;
    color: #3d3820;
    max-width: 360px;
}

.ctus-pg .img-vig-wrap {
    position: relative;
    width: 420px;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11), -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.ctus-pg .img-vig-wrap img {
    display: block;
    width: 420px;
    height: 320px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.96) contrast(1.04);
}

.ctus-pg .img-vig-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(ellipse at 10% 10%, rgba(30, 26, 8, 0.38) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(30, 26, 8, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 10%, rgba(30, 26, 8, 0.28) 0%, transparent 48%),
        radial-gradient(ellipse at 10% 90%, rgba(30, 26, 8, 0.28) 0%, transparent 48%);
    pointer-events: none;
}

.ctus-pg .img-cap-wrap {
    position: relative;
}

.ctus-pg .img-cap {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(30, 26, 8, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .img-cap-wrap:hover .img-cap {
    opacity: 1;
}

.ctus-pg .img-cap-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #f0ecdc;
    text-align: center;
}

.ctus-pg .corner-dec {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.ctus-pg .corner-dec.tl {
    top: 8px;
    left: 8px;
    border-top: 2px solid rgba(187, 172, 36, 0.5);
    border-left: 2px solid rgba(187, 172, 36, 0.5);
    border-radius: 2px 0 0 0;
}

.ctus-pg .corner-dec.tr {
    top: 8px;
    right: 8px;
    border-top: 2px solid rgba(187, 172, 36, 0.5);
    border-right: 2px solid rgba(187, 172, 36, 0.5);
    border-radius: 0 2px 0 0;
}

.ctus-pg .corner-dec.bl {
    bottom: 8px;
    left: 8px;
    border-bottom: 2px solid rgba(187, 172, 36, 0.5);
    border-left: 2px solid rgba(187, 172, 36, 0.5);
    border-radius: 0 0 0 2px;
}

.ctus-pg .corner-dec.br {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid rgba(187, 172, 36, 0.5);
    border-right: 2px solid rgba(187, 172, 36, 0.5);
    border-radius: 0 0 2px 0;
}

.ctus-pg .form-band {
    position: relative;
    padding: 64px 0;
    background: #fff;
}

.ctus-pg .form-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f9f7ef 0%, #fff 55%, #f5f3ea 100%);
    z-index: 0;
}

.ctus-pg .diamond-tex {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect x='16' y='0' width='11' height='11' fill='%23BBAC24' transform='rotate(45 16 5.5)'/%3E%3C/svg%3E");
    background-size: 32px 32px;
}

.ctus-pg .form-lay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.ctus-pg .form-sidebar {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.ctus-pg .sidebar-hed {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a08;
    letter-spacing: 0.01em;
    text-shadow: 1px 2px 0 rgba(187, 172, 36, 0.14);
    margin: 0 0 8px;
}

.ctus-pg .sidebar-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #3d3820;
    margin: 0;
}

.ctus-pg .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    transition: box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .info-item:hover {
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.ctus-pg .info-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #8a7e1a;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ctus-pg .info-val {
    font-size: 15px;
    line-height: 1.65;
    color: #1e1a08;
}

.ctus-pg .info-val a {
    color: #6a5f1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.42s ease-in-out;
}

.ctus-pg .info-val a:hover {
    color: #BBAC24;
}

.ctus-pg .frm-main {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.ctus-pg .frm-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
}

.ctus-pg .frm-grp {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.ctus-pg .frm-grp.full {
    flex: 1 1 100%;
}

.ctus-pg .frm-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #3d3820;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.ctus-pg .frm-lbl .req {
    color: #BBAC24;
    margin-left: 2px;
}

.ctus-pg .frm-inp {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #1e1a08;
    background: #faf8f0;
    border: 1.5px solid #d4ce9e;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: inset 0 2px 5px rgba(187, 172, 36, 0.06);
    appearance: none;
}

.ctus-pg .frm-inp:focus {
    border-color: #BBAC24;
    box-shadow: inset 0 2px 5px rgba(187, 172, 36, 0.09), 0 0 0 3px rgba(187, 172, 36, 0.12);
}

.ctus-pg .frm-inp::placeholder {
    color: #a09870;
}

.ctus-pg .frm-sel {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #1e1a08;
    background: #faf8f0;
    border: 1.5px solid #d4ce9e;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23BBAC24' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .frm-sel:focus {
    border-color: #BBAC24;
    box-shadow: 0 0 0 3px rgba(187, 172, 36, 0.12);
}

.ctus-pg .frm-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.65;
    color: #1e1a08;
    background: #faf8f0;
    border: 1.5px solid #d4ce9e;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: inset 0 3px 6px rgba(187, 172, 36, 0.05);
}

.ctus-pg .frm-textarea:focus {
    border-color: #BBAC24;
    box-shadow: inset 0 3px 6px rgba(187, 172, 36, 0.08), 0 0 0 3px rgba(187, 172, 36, 0.12);
}

.ctus-pg .frm-textarea::placeholder {
    color: #a09870;
}

.ctus-pg .check-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.ctus-pg .check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #BBAC24;
    margin-top: 2px;
    cursor: pointer;
}

.ctus-pg .check-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #3d3820;
}

.ctus-pg .check-txt a {
    color: #6a5f1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.42s ease-in-out;
}

.ctus-pg .check-txt a:hover {
    color: #BBAC24;
}

.ctus-pg .frm-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1e1a08;
    background: linear-gradient(155deg, #d4c82e 0%, #BBAC24 55%, #a89a1e 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07), -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .frm-submit:hover {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.ctus-pg .frm-submit:focus {
    outline: 3px solid rgba(187, 172, 36, 0.4);
    outline-offset: 2px;
}

.ctus-pg .frm-submit:active {
    transform: scale(0.98);
}

.ctus-pg .frm-hed {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a08;
    letter-spacing: 0.01em;
    text-shadow: 1px 2px 0 rgba(187, 172, 36, 0.12);
    margin: 0 0 8px;
}

.ctus-pg .frm-sub {
    font-size: 15px;
    line-height: 1.65;
    color: #5a5230;
    margin: 0 0 32px;
}

.ctus-pg .dense-band {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(180deg, #f0edd8 0%, #e8e3c8 100%);
    overflow: hidden;
}

.ctus-pg .dense-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(187, 172, 36, 0.04) 0%, transparent 50%, rgba(191, 201, 163, 0.08) 100%);
    z-index: 0;
}

.ctus-pg .dense-inner {
    position: relative;
    z-index: 2;
}

.ctus-pg .dense-hed {
    font-size: 24px;
    line-height: 1.4;
    color: #1e1a08;
    letter-spacing: 0.01em;
    text-shadow: 1px 2px 0 rgba(187, 172, 36, 0.16);
    margin: 0 0 8px;
    text-align: center;
}

.ctus-pg .dense-sub {
    font-size: 15px;
    line-height: 1.65;
    color: #3d3820;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.ctus-pg .dense-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ctus-pg .d-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctus-pg .d-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #BBAC24 50%, transparent 100%);
    border-radius: 12px 12px 0 0;
}

.ctus-pg .d-card:hover {
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
}

.ctus-pg .d-card-ico {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(135deg, #f0edd8 0%, #e4df9e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ctus-pg .d-card-ico svg {
    width: 18px;
    height: 18px;
}

.ctus-pg .d-card-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #8a7e1a;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ctus-pg .d-card-val {
    font-size: 15px;
    line-height: 1.65;
    color: #1e1a08;
}

.ctus-pg .d-card-val a {
    color: #1e1a08;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.42s ease-in-out;
}

.ctus-pg .d-card-val a:hover {
    color: #BBAC24 !important;
}

.ctus-pg .clip-reveal-wrap {
    position: relative;
    display: inline-block;
}

.ctus-pg .clip-reveal-inner {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(187, 172, 36, 0.18) 0%, rgba(191, 201, 163, 0.14) 100%);
    border-radius: 4px;
    pointer-events: none;
}

.ctus-pg .d-card:hover .clip-reveal-inner {
    clip-path: inset(0 0% 0 0);
}

@media (max-width: 992px) {
    .ctus-pg .anchor-right {
        flex-direction: column;
        padding: 48px 0 32px;
    }

    .ctus-pg .anchor-left-col {
        flex: unset;
        padding: 0;
    }

    .ctus-pg .anchor-right-col {
        align-items: flex-start;
        padding: 0;
    }

    .ctus-pg .img-vig-wrap {
        width: 100%;
    }

    .ctus-pg .img-vig-wrap img {
        width: 100%;
        height: 260px;
    }

    .ctus-pg .form-lay {
        flex-direction: column;
    }

    .ctus-pg .form-sidebar {
        flex: unset;
        width: 100%;
    }

    .ctus-pg .dense-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ctus-pg .pg-hed {
        font-size: 56px;
    }
}

@media (max-width: 576px) {
    .ctus-pg .pg-bound {
        padding: 0 16px;
    }

    .ctus-pg .anchor-right {
        padding: 32px 0 24px;
    }

    .ctus-pg .pg-hed {
        font-size: 24px;
    }

    .ctus-pg .frm-row {
        flex-direction: column;
    }

    .ctus-pg .dense-grid {
        grid-template-columns: 1fr;
    }

    .ctus-pg .frm-main {
        padding: 16px;
    }

    .ctus-pg .form-band {
        padding: 32px 0;
    }

    .ctus-pg .dense-band {
        padding: 32px 0;
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: #fff;
}

.succ-page .succ-card {
    max-width: 560px;
    width: 100%;
    background: #f5f3ee;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 4px 22px -1px rgba(187, 172, 36, 0.11);
    text-align: center;
}

.succ-page .succ-card .succ-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.succ-page .succ-card .succ-icon svg {
    width: 64px;
    height: 64px;
}

.succ-page .succ-card .succ-heading {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #2a2318;
    margin: 0 0 16px;
    text-shadow: 0 1px 3px rgba(187, 172, 36, 0.10);
}

.succ-page .succ-card .succ-body {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #3d3728;
    margin: 0 0 32px;
}

.succ-page .succ-card .succ-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BBAC24, transparent);
    border-radius: 2px;
    margin: 0 auto 32px;
}

.succ-page .succ-card .succ-meta {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #5a5240;
    margin: 0 0 32px;
}

.succ-page .succ-card .succ-meta strong {
    color: #2a2318;
}

.succ-page .succ-card .succ-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #2a2318;
    background: linear-gradient(112deg, #BBAC24 0%, #d4c535 50%, #BFC9A3 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: -1px 3px 6px -1px rgba(187, 172, 36, 0.07);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 600;
}

.succ-page .succ-card .succ-btn:hover {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -1px rgba(187, 172, 36, 0.11);
}

.succ-page .succ-card .succ-btn:focus {
    outline: 2px solid #BBAC24;
    outline-offset: 4px;
}

.succ-page .succ-card .succ-btn:active {
    transform: scale(0.98);
}

.succ-page .succ-note {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #5a5240;
    text-align: center;
    max-width: 400px;
}

.succ-page .succ-note a {
    color: #8a7a10;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.succ-page .succ-note a:hover {
    color: #BBAC24;
}

@media (max-width: 576px) {
    .succ-page .succ-card {
        padding: 32px 16px;
    }
}