html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Fira Sans', sans-serif;
    background-color: #111018;
    color: #EEE2DF;
}

.site-hd {
    position: relative;
    background: linear-gradient(135deg, #1a1218 0%, #150f14 50%, #1c1018 100%);
    border-bottom: 1px solid rgba(190, 106, 89, 0.18);
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    padding: 0;
    z-index: 100;
}

.hd-upper {
    display: flex;
    align-items: stretch;
    min-height: 80px;
}

.brand-mount {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(180deg, rgba(190, 106, 89, 0.12) 0%, rgba(190, 106, 89, 0.04) 100%);
    border-right: 1px solid rgba(207, 159, 152, 0.14);
    border-radius: 0 0 48px 0;
    flex-shrink: 0;
}

.brand-img-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 6px 48px 6px 6px;
    background-color: rgba(238, 226, 223, 0.08);
    border: 1px solid rgba(207, 159, 152, 0.3);
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05), 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

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

.brand-label {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    text-decoration: none;
}

.brand-tag {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #CF9F98;
}

.hd-status {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    margin-left: auto;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background-color: #BE6A59;
    box-shadow: 0 0 0 3px rgba(190, 106, 89, 0.2);
    flex-shrink: 0;
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    color: #CF9F98;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.hd-nav-row {
    display: flex;
    align-items: center;
    padding: 0 24px 0 24px;
    border-top: 1px solid rgba(207, 159, 152, 0.08);
    background: rgba(190, 106, 89, 0.04);
    min-height: 48px;
    flex-wrap: wrap;
}

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

.pri-nav li {
    display: flex;
}

.pri-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #EEE2DF;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pri-nav__link:hover {
    color: #EEE2DF;
    background-color: rgba(190, 106, 89, 0.14);
    border-color: rgba(207, 159, 152, 0.2);
}

.pri-nav__link:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(190, 106, 89, 0.3);
}

.pri-nav__link--active {
    color: #EEE2DF;
    background: linear-gradient(90deg, rgba(190, 106, 89, 0.22) 0%, rgba(207, 159, 152, 0.12) 100%);
    border-color: rgba(190, 106, 89, 0.35);
}

@media (max-width: 768px) {
    .hd-upper {
        flex-wrap: wrap;
        min-height: auto;
    }

    .hd-status {
        padding: 8px 16px;
    }

    .brand-mount {
        padding: 16px;
    }

    .hd-nav-row {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .brand-label {
        display: none;
    }

    .status-text {
        display: none;
    }
}

.site-ft {
    background: linear-gradient(180deg, #120e11 0%, #0e0b0d 100%);
    border-top: 1px solid rgba(190, 106, 89, 0.15);
}

.ft-util-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 24px;
    border-bottom: 1px solid rgba(207, 159, 152, 0.08);
    max-width: 1320px;
    margin: 0 auto;
}

.ft-util-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-util-nav__link {
    font-size: 14px;
    font-weight: 400;
    color: #CF9F98;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.4s ease-in-out;
}

.ft-util-nav__link:hover {
    color: #EEE2DF;
}

.ft-util-nav__link:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(190, 106, 89, 0.3);
}

.ft-copy {
    font-size: 14px;
    color: rgba(207, 159, 152, 0.6);
    letter-spacing: 0.02em;
}

.ft-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ft-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ft-card__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.65);
    max-width: 360px;
}

.ft-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ft-contact-item__label {
    font-size: 14px;
    font-weight: 600;
    color: #CF9F98;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    min-width: 48px;
}

.ft-contact-item__val {
    font-size: 14px;
    font-weight: 400;
    color: rgba(238, 226, 223, 0.75);
    line-height: 1.7;
    word-break: break-all;
}

.ft-contact-item__val a {
    color: rgba(238, 226, 223, 0.75);
    text-decoration: none;
    transition: color 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.ft-contact-item__val a:hover {
    color: #EEE2DF;
}

.ft-contact-item__val a:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(190, 106, 89, 0.3);
}

.ft-col-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-col-links__heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #BE6A59;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ft-col-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-col-links__list a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(238, 226, 223, 0.65);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.42s ease-in-out;
}

.ft-col-links__list a:hover {
    color: #EEE2DF;
}

.ft-col-links__list a:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(190, 106, 89, 0.3);
}

.ft-logo-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-top: 1px solid rgba(190, 106, 89, 0.1);
}

.ft-logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 48px 6px 48px 6px;
    background-color: rgba(238, 226, 223, 0.06);
    border: 1px solid rgba(207, 159, 152, 0.2);
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
}

.ft-logo-shell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .ft-body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px;
    }

    .ft-util-row {
        padding: 8px 16px;
    }
}

.ck-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 300px;
    background: linear-gradient(145deg, #1e1419 0%, #170f14 100%);
    border: 1px solid rgba(190, 106, 89, 0.3);
    border-radius: 6px;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11), inset 0 2px 6px 0 rgba(190, 106, 89, 0.06);
    z-index: 1200;
    padding: 24px;
    display: none;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.ck-notice.ck-visible {
    transform: translateY(0);
    opacity: 1;
}

.ck-notice__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-notice__icon svg {
    width: 28px;
    height: 28px;
}

.ck-notice__body {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.8);
    margin-bottom: 16px;
}

.ck-notice__body strong {
    color: #EEE2DF;
    font-weight: 600;
}

.ck-notice__btns {
    display: flex;
    gap: 8px;
}

.ck-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 6px;
    border: 1px solid rgba(190, 106, 89, 0.5);
    background: transparent;
    color: #EEE2DF;
    cursor: pointer;
    font-family: 'Fira Sans', sans-serif;
    transition: background-color 0.38s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.38s cubic-bezier(0.16, 1, 0.3, 1), color 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px;
}

.ck-btn:hover {
    background-color: rgba(190, 106, 89, 0.18);
    border-color: rgba(190, 106, 89, 0.8);
}

.ck-btn:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(190, 106, 89, 0.3);
}

.ck-btn--accept {
    background: linear-gradient(90deg, rgba(190, 106, 89, 0.25) 0%, rgba(207, 159, 152, 0.15) 100%);
    border-color: rgba(190, 106, 89, 0.6);
}

.ck-btn--accept:hover {
    background: linear-gradient(90deg, rgba(190, 106, 89, 0.4) 0%, rgba(207, 159, 152, 0.25) 100%);
    border-color: #BE6A59;
}

@media (max-width: 480px) {
    .ck-notice {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 16px;
    }
}

.legal-data {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #EEE2DF;
    background: #1b1210;
    min-height: 100vh;
}

.legal-data h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #EEE2DF;
    margin-bottom: 24px;
    margin-top: 0;
}

.legal-data h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-data h3 {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #CF9F98;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-data h4 {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0em;
    color: #BE6A59;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-data h5 {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #CF9F98;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-data h6 {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #BE6A59;
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-data p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #c8b8b4;
    margin-top: 0;
    margin-bottom: 16px;
}

.legal-data ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.legal-data ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.legal-data ul li {
    font-size: 14px;
    line-height: 1.7;
    color: #c8b8b4;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.legal-data ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #BE6A59;
    flex-shrink: 0;
}

.legal-data ol li {
    font-size: 14px;
    line-height: 1.7;
    color: #c8b8b4;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    counter-increment: policy-counter;
}

.legal-data ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -8px;
    top: 0;
    font-size: 14px;
    color: #BE6A59;
    font-weight: 600;
    line-height: 1.7;
}

.legal-data strong,
.legal-data b {
    color: #EEE2DF;
    font-weight: 700;
}

.legal-data em,
.legal-data i {
    color: #CF9F98;
    font-style: italic;
}

.legal-data a {
    color: #BE6A59;
    text-decoration: underline;
    text-decoration-color: rgba(190, 106, 89, 0.4);
    text-underline-offset: 3px;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-data a:hover {
    color: #CF9F98;
    text-decoration-color: rgba(207, 159, 152, 0.7);
}

.legal-data hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #BE6A59 30%, #CF9F98 60%, transparent);
    margin: 48px 0;
    opacity: 0.35;
}

.legal-data div {
    font-size: 14px;
    line-height: 1.7;
    color: #c8b8b4;
}

.legal-data div+div {
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .legal-data {
        padding: 48px 24px;
    }

    .legal-data h1 {
        font-size: 42px;
    }

    .legal-data h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .legal-data {
        padding: 24px 16px;
    }

    .legal-data h1 {
        font-size: 42px;
    }

    .legal-data h2 {
        font-size: 22px;
        margin-top: 24px;
    }

    .legal-data h3 {
        font-size: 22px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .legal-data {
        padding: 24px 16px;
    }

    .legal-data h1 {
        font-size: 22px;
    }

    .legal-data h2 {
        font-size: 22px;
    }

    .legal-data hr {
        margin: 24px 0;
    }
}

.svc-det {
    background: #18120f;
    color: #EEE2DF;
    position: relative;
}

.svc-det .top-bar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.svc-det .breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.svc-det .breadcrumb a {
    color: #CF9F98;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-det .breadcrumb a:hover {
    color: #EEE2DF;
}

.svc-det .breadcrumb .sep {
    color: #BE6A59;
    font-size: 14px;
    line-height: 1.7;
    user-select: none;
}

.svc-det .breadcrumb .current {
    color: #EEE2DF;
    font-size: 14px;
    line-height: 1.7;
}

.svc-det .scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 50%, #BE6A59 100%);
    color: #18120f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    flex-shrink: 0;
}

.svc-det .scroll-top:hover {
    opacity: 0.85;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.svc-det .scroll-top svg {
    width: 18px;
    height: 18px;
}

.svc-det .title-blk {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    position: relative;
}

.svc-det .title-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 50%, transparent 100%);
}

.svc-det .title-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.svc-det .cat-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(190, 106, 89, 0.18);
    color: #CF9F98;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.06em;
    border: 1px solid rgba(190, 106, 89, 0.3);
}

.svc-det .user-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(207, 159, 152, 0.1);
    color: #EEE2DF;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    border: 1px solid rgba(207, 159, 152, 0.2);
}

.svc-det .main-heading {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid #BE6A59;
}

.svc-det .meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.svc-det .meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .meta-label {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    letter-spacing: 0.05em;
}

.svc-det .meta-val {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    letter-spacing: -0.01em;
}

.svc-det .meta-sep {
    width: 1px;
    height: 40px;
    background: rgba(207, 159, 152, 0.25);
    flex-shrink: 0;
}

.svc-det .like-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.svc-det .like-icon {
    display: inline-flex;
}

.svc-det .like-icon svg {
    width: 20px;
    height: 20px;
    fill: #BE6A59;
}

.svc-det .like-count {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.svc-det .title-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.svc-det .img-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.svc-det .img-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.82;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-det .img-card:hover img {
    opacity: 0.95;
}

.svc-det .img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.25) 0%, rgba(24, 18, 15, 0.5) 100%);
    pointer-events: none;
}

.svc-det .corner-lines {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.svc-det .corner-lines::before,
.svc-det .corner-lines::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(190, 106, 89, 0.4);
    border-radius: 6px;
}

.svc-det .corner-lines::before {
    inset: 0;
}

.svc-det .corner-lines::after {
    inset: 10px;
    border-color: rgba(207, 159, 152, 0.25);
}

.svc-det .body-sec {
    background: #211710;
    padding: 48px 0;
    position: relative;
}

.svc-det .body-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(253deg, #BE6A59 0%, transparent 60%);
}

.svc-det .body-sec::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(253deg, rgba(207, 159, 152, 0.4) 0%, transparent 60%);
}

.svc-det .body-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.svc-det .prog-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.svc-det .prog-heading {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    letter-spacing: -0.01em;
    padding-left: 16px;
    border-left: 3px solid #BE6A59;
    margin: 0;
}

.svc-det .prog-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .prog-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    margin: 0;
}

.svc-det .prog-body h2 {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 16px 0 8px;
    letter-spacing: -0.01em;
}

.svc-det .prog-body h3 {
    font-size: 22px;
    line-height: 1.15;
    color: #CF9F98;
    margin: 8px 0;
}

.svc-det .prog-body ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .prog-body li {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.svc-det .prog-body cite {
    font-size: 14px;
    line-height: 1.7;
    color: #BE6A59;
    font-style: italic;
}

.svc-det .prog-body details {
    border: 1px solid rgba(190, 106, 89, 0.2);
    border-radius: 6px;
    padding: 8px 16px;
}

.svc-det .prog-body summary {
    font-size: 14px;
    line-height: 1.7;
    color: #EEE2DF;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.svc-det .desc-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-det .desc-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    margin: 0;
}

.svc-det .desc-col h2 {
    font-size: 42px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 24px 0 8px;
    letter-spacing: -0.02em;
}

.svc-det .desc-col h3 {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 16px 0 8px;
}

.svc-det .desc-col ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .desc-col li {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.svc-det .desc-col blockquote {
    margin: 8px 0;
    padding: 16px 24px;
    border-radius: 6px;
    background: rgba(190, 106, 89, 0.08);
    border-left: none;
    box-shadow: inset 0 2px 6px 0 rgba(190, 106, 89, 0.08);
}

.svc-det .desc-col blockquote p {
    color: #EEE2DF;
}

.svc-det .desc-col cite {
    font-size: 14px;
    color: #BE6A59;
    font-style: italic;
}

.svc-det .desc-col figure {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
}

.svc-det .desc-col figcaption {
    font-size: 14px;
    line-height: 1.7;
    color: #BE6A59;
    margin-top: 8px;
}

.svc-det .desc-col abbr {
    text-decoration: underline dotted;
    color: #CF9F98;
    cursor: help;
}

.svc-det .desc-col em {
    color: #EEE2DF;
    font-style: italic;
}

.svc-det .desc-col details {
    border: 1px solid rgba(190, 106, 89, 0.2);
    border-radius: 6px;
    padding: 8px 16px;
}

.svc-det .desc-col summary {
    font-size: 14px;
    line-height: 1.7;
    color: #EEE2DF;
    cursor: pointer;
}

.svc-det .price-sec {
    padding: 48px 0;
    position: relative;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.12) 0%, rgba(24, 18, 15, 0.0) 100%);
}

.svc-det .price-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(207, 159, 152, 0.2);
}

.svc-det .price-sec::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, transparent 50%);
}

.svc-det .price-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.svc-det .price-main {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px;
    border-radius: 6px;
    background: rgba(24, 18, 15, 0.9);
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    border: 1px solid rgba(190, 106, 89, 0.25);
    position: relative;
}

.svc-det .price-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 6px 0 0 6px;
}

.svc-det .price-label {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.svc-det .price-amount {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #EEE2DF;
}

.svc-det .price-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.svc-det .price-note {
    font-size: 14px;
    line-height: 1.7;
    color: #BE6A59;
    font-style: italic;
}

.svc-det .enroll-btn {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 6px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 50%, #BE6A59 100%);
    color: #18120f;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.svc-det .enroll-btn:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    opacity: 0.92;
}

.svc-det .enroll-btn:focus {
    outline: 2px solid #CF9F98;
    outline-offset: 3px;
}

.svc-det .seats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(190, 106, 89, 0.15);
    border: 1px solid rgba(190, 106, 89, 0.3);
}

.svc-det .seats-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #BE6A59;
    flex-shrink: 0;
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.svc-det .seats-text {
    font-size: 14px;
    line-height: 1.15;
    color: #EEE2DF;
}

.svc-det .info-cards {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.svc-det .info-card {
    padding: 24px;
    border-radius: 6px;
    background: rgba(33, 23, 16, 0.9);
    border: 1px solid rgba(207, 159, 152, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.svc-det .info-card:hover {
    border-color: rgba(190, 106, 89, 0.3);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.svc-det .ic-label {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    letter-spacing: 0.04em;
}

.svc-det .ic-val {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    letter-spacing: -0.01em;
}

@keyframes drop-bounce {
    0% {
        opacity: 0;
        transform: translateY(-32px);
    }

    70% {
        opacity: 1;
        transform: translateY(4px);
    }

    85% {
        transform: translateY(-2px);
    }

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

.svc-det .title-left {
    animation: drop-bounce 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.svc-det .title-right {
    animation: drop-bounce 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.svc-det .price-main {
    animation: drop-bounce 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@media (max-width: 1024px) {
    .svc-det .title-blk {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    .svc-det .title-right {
        max-width: 400px;
    }

    .svc-det .body-inner {
        grid-template-columns: 1fr;
    }

    .svc-det .prog-col {
        position: static;
    }

    .svc-det .price-inner {
        grid-template-columns: 1fr;
    }

    .svc-det .price-main {
        grid-column: 1;
    }

    .svc-det .info-cards {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .svc-det .main-heading {
        font-size: 42px;
    }

    .svc-det .price-amount {
        font-size: 42px;
    }

    .svc-det .info-cards {
        grid-template-columns: 1fr;
    }

    .svc-det .price-main {
        padding: 24px;
    }

    .svc-det .meta-row {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .svc-det .main-heading {
        font-size: 42px;
    }

    .svc-det .top-bar {
        padding: 16px;
    }

    .svc-det .title-blk {
        padding: 24px 16px 48px;
    }

    .svc-det .body-inner,
    .svc-det .price-inner {
        padding: 0 16px;
    }
}

.abt-us {
    background: #111018;
    overflow-x: clip;
    position: relative;
}

.abt-us .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 106, 89, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 106, 89, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.abt-us .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 40%, #111018 100%);
    pointer-events: none;
    z-index: 1;
}

.abt-us .title-row {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px 48px 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: end;
}

.abt-us .title-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .eyebrow {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    color: #CF9F98;
    text-transform: uppercase;
}

.abt-us .page-h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin: 0;
}

.abt-us .title-divider {
    display: flex;
    align-items: center;
    gap: 16px;
}

.abt-us .title-divider span {
    display: block;
    width: 32px;
    height: 2px;
    background: #BE6A59;
}

.abt-us .title-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 8px;
}

.abt-us .title-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.abt-us .title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.abt-us .dot-cluster {
    position: absolute;
    bottom: -24px;
    right: -16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.abt-us .dot-cluster .dc-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.abt-us .dot-cluster .d-sm {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #BE6A59;
    opacity: 0.5;
}

.abt-us .dot-cluster .d-md {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #CF9F98;
    opacity: 0.35;
}

.abt-us .dot-cluster .d-lg {
    width: 16px;
    height: 16px;
    border-radius: 48px;
    background: #EEE2DF;
    opacity: 0.15;
}

.abt-us .abt-identity {
    position: relative;
    z-index: 2;
    background: #EEE2DF;
    padding: 64px 48px;
}

.abt-us .identity-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.abt-us .id-label {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #BE6A59;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abt-us .id-h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1e1720;
    margin: 0 0 24px 0;
    padding-left: 16px;
    border-left: 3px solid #BE6A59;
}

.abt-us .id-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .id-stat {
    background: #111018;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    text-align: center;
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .id-stat:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.abt-us .id-stat .stat-num {
    font-size: 42px;
    line-height: 1.15;
    color: #BE6A59;
    letter-spacing: -0.02em;
    display: block;
}

.abt-us .id-stat .stat-lbl {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    letter-spacing: 0.06em;
}

.abt-us .id-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .id-body {
    font-size: 22px;
    line-height: 1.7;
    color: #2a2030;
    margin: 0;
}

.abt-us .id-body-sm {
    font-size: 14px;
    line-height: 1.7;
    color: #3d2f38;
    margin: 0;
}

.abt-us .id-accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(253deg, #BE6A59 50%, #CF9F98 50%);
    border-radius: 6px;
}

.abt-us .id-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.abt-us .id-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
}

.abt-us .id-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-us .id-img-wrap:hover img {
    transform: scale(1.04);
}

.abt-us .team-sec {
    position: relative;
    z-index: 2;
    background: #17141d;
    padding: 64px 48px;
}

.abt-us .team-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 30%, #111018 100%);
    pointer-events: none;
}

.abt-us .team-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .team-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.abt-us .team-h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #EEE2DF;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid #BE6A59;
}

.abt-us .team-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    margin: 0;
    text-align: right;
}

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

.abt-us .tm-card {
    background: #1e1a27;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.abt-us .tm-card:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    transform: translateY(-4px);
}

.abt-us .tm-card:active {
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    transform: translateY(0);
}

.abt-us .tm-img-wrap {
    border-radius: 48px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.abt-us .tm-img-wrap img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.abt-us .tm-name {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 0;
}

.abt-us .tm-role {
    font-size: 14px;
    line-height: 1.7;
    color: #BE6A59;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.abt-us .tm-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #9e8fa0;
    margin: 0;
}

.abt-us .tm-accent {
    width: 32px;
    height: 2px;
    background: linear-gradient(253deg, #BE6A59 50%, #CF9F98 50%);
    border-radius: 6px;
    margin: 0 auto;
}

.abt-us .sec-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    max-width: 1320px;
    margin: 0 auto;
}

.abt-us .sec-divider .div-line {
    width: 80px;
    height: 1px;
    background: #BE6A59;
    opacity: 0.4;
}

.abt-us .reveal-child {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

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

.abt-us .d4 {
    animation-delay: 0.46s;
}

.abt-us .d5 {
    animation-delay: 0.58s;
}

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

@media (max-width: 1024px) {
    .abt-us .title-row {
        grid-template-columns: 1fr;
        padding: 64px 24px 48px;
    }

    .abt-us .identity-inner {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .abt-us .id-meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abt-us .id-stat {
        flex: 1 1 140px;
    }

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

    .abt-us .team-intro {
        text-align: left;
    }

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

@media (max-width: 768px) {
    .abt-us .title-row {
        padding: 48px 16px 24px;
    }

    .abt-us .page-h1 {
        font-size: 42px;
    }

    .abt-us .abt-identity {
        padding: 48px 16px;
    }

    .abt-us .team-sec {
        padding: 48px 16px;
    }

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

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

    .abt-us .id-h2 {
        font-size: 22px;
    }

    .abt-us .team-h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .abt-us .page-h1 {
        font-size: 42px;
    }

    .abt-us .id-meta {
        flex-direction: column;
    }
}

.svc-pg {
    background: #141010;
    color: #EEE2DF;
    overflow-x: hidden;
}

.svc-pg .fade-in {
    opacity: 0;
    animation: svcFadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.svc-pg .fade-in:nth-child(1) {
    animation-delay: 0.05s;
}

.svc-pg .fade-in:nth-child(2) {
    animation-delay: 0.15s;
}

.svc-pg .fade-in:nth-child(3) {
    animation-delay: 0.25s;
}

.svc-pg .fade-in:nth-child(4) {
    animation-delay: 0.35s;
}

@keyframes svcFadeIn {
    to {
        opacity: 1;
    }
}

.svc-pg .pg-strip {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.svc-pg .pg-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: saturate(0.3) brightness(0.5);
    display: block;
}

.svc-pg .pg-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #141010 100%);
}

.svc-pg .pg-head {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.svc-pg .pg-head::before {
    content: '';
    display: block;
    width: 3px;
    height: 42px;
    background: linear-gradient(253deg, #BE6A59 50%, #CF9F98 100%);
    border-radius: 6px;
    margin-bottom: 16px;
}

.svc-pg .pg-head h1 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin: 0 0 16px;
    max-width: 680px;
}

.svc-pg .pg-head p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    max-width: 560px;
    margin: 0;
}

.svc-pg .blob-wrap {
    position: absolute;
    right: 48px;
    top: -24px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: 48px;
}

.svc-pg .blob-wrap::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: #BE6A59;
    opacity: 0.08;
    border-radius: 48px;
    top: 24px;
    left: 24px;
    filter: blur(40px);
}

.svc-pg .blob-wrap::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: #CF9F98;
    opacity: 0.07;
    border-radius: 48px;
    bottom: 16px;
    right: 16px;
    filter: blur(28px);
}

.svc-pg .divider-left {
    max-width: 1320px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.svc-pg .divider-left hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #BE6A59 0%, transparent 60%);
    margin: 0;
}

.svc-pg .card-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .svc-pg .card-grid {
        grid-template-columns: 1fr;
    }

    .svc-pg .blob-wrap {
        display: none;
    }

    .svc-pg .pg-head h1 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .svc-pg .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.svc-pg .svc-card {
    background: #1e1816;
    border-radius: 6px;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.svc-pg .svc-card:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    transform: translateY(-4px);
}

.svc-pg .svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(253deg, #BE6A59 50%, #CF9F98 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    border-radius: 6px 6px 0 0;
}

.svc-pg .svc-card:hover::before {
    opacity: 1;
}

.svc-pg .card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.svc-pg .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.7);
    transition: filter 0.5s ease-in-out;
}

.svc-pg .svc-card:hover .card-img img {
    filter: saturate(0.7) brightness(0.8);
}

.svc-pg .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(190, 106, 89, 0.85);
    color: #EEE2DF;
    font-size: 14px;
    line-height: 1.15;
    padding: 4px 12px;
    border-radius: 48px;
    letter-spacing: 0.04em;
}

.svc-pg .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.svc-pg .card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.svc-pg .card-meta .meta-pill {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    background: rgba(207, 159, 152, 0.1);
    border-radius: 48px;
    padding: 4px 12px;
    box-shadow: inset 0 2px 4px 0 rgba(190, 106, 89, 0.05);
}

.svc-pg .card-meta .meta-seats {
    font-size: 14px;
    line-height: 1.15;
    color: #BE6A59;
    margin-left: auto;
}

.svc-pg .card-body h2 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #EEE2DF;
    margin: 0;
    text-align: center;
}

.svc-pg .card-body h2::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #BE6A59;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
}

.svc-pg .card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    text-align: center;
    margin: 0;
}

.svc-pg .card-dur {
    font-size: 14px;
    line-height: 1.15;
    color: #EEE2DF;
    text-align: center;
    opacity: 0.7;
}

.svc-pg .card-price-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.svc-pg .card-price-row .price-val {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
}

.svc-pg .card-price-row .price-terms {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    padding-bottom: 6px;
}

.svc-pg .price-note {
    font-size: 14px;
    line-height: 1.7;
    color: #BE6A59;
    text-align: center;
    margin: 0;
}

.svc-pg .card-likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.svc-pg .like-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.svc-pg .like-icon svg {
    width: 16px;
    height: 16px;
    fill: #BE6A59;
}

.svc-pg .like-count {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
}

.svc-pg .card-cta {
    margin-top: 8px;
}

.svc-pg .card-cta a {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    background: linear-gradient(253deg, #BE6A59 50%, #CF9F98 100%);
    color: #141010;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
}

.svc-pg .card-cta a:hover {
    opacity: 0.88;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.svc-pg .card-cta a:focus {
    outline: 2px solid #CF9F98;
    outline-offset: 3px;
}

.svc-pg .why-strip {
    background: #EEE2DF;
    padding: 48px 24px;
    position: relative;
}

.svc-pg .why-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #BE6A59 0%, transparent 60%);
}

.svc-pg .why-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .svc-pg .why-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.svc-pg .why-text h3 {
    font-size: 22px;
    line-height: 1.15;
    color: #141010;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.svc-pg .why-text h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 22px;
    background: #BE6A59;
    border-radius: 6px;
    margin-right: 12px;
    vertical-align: middle;
}

.svc-pg .why-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #3a2e2c;
    margin: 0;
}

.svc-pg .why-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.svc-pg .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6);
    display: block;
}

.svc-pg .metrics-row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.svc-pg .metric-item {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: #1e1816;
    border-radius: 6px;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-pg .metric-item:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.svc-pg .metric-val {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #BE6A59;
}

.svc-pg .metric-label {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    text-align: center;
}

.svc-pg .divider-left2 {
    max-width: 1320px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.svc-pg .divider-left2 hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #CF9F98 0%, transparent 55%);
    margin: 0;
}

.svc-pg .approach-band {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-pg .approach-band h4 {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 0;
    text-align: center;
    letter-spacing: -0.01em;
}

.svc-pg .approach-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .svc-pg .approach-items {
        grid-template-columns: 1fr;
    }
}

.svc-pg .ap-item {
    padding: 24px;
    background: #1e1816;
    border-radius: 6px;
    box-shadow: inset 0 3px 6px 0 rgba(190, 106, 89, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    transition: background 0.4s ease-in-out;
}

.svc-pg .ap-item:hover {
    background: #251e1c;
}

.svc-pg .ap-num {
    font-size: 42px;
    line-height: 1.15;
    color: #BE6A59;
    opacity: 0.25;
    letter-spacing: -0.02em;
}

.svc-pg .ap-label {
    font-size: 14px;
    line-height: 1.7;
    color: #EEE2DF;
}

.svc-pg .ap-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    margin: 0;
}

@media (max-width: 480px) {
    .svc-pg .pg-head {
        padding: 24px 16px 16px;
    }

    .svc-pg .card-grid {
        padding: 0 16px 24px;
        gap: 16px;
    }

    .svc-pg .metrics-row {
        padding: 24px 16px;
    }

    .svc-pg .approach-band {
        padding: 0 16px 24px;
    }

    .svc-pg .card-price-row .price-val {
        font-size: 22px;
    }
}

.lp-root {
    background: #141210;
    color: #EEE2DF;
    overflow-x: hidden;
}

.lp-root .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-root .tb {
    padding: 48px 0;
    position: relative;
}

.lp-root .tb-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}

.lp-root .tb-img-col {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.lp-root .tb-img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    filter: contrast(1.05) brightness(0.9) grayscale(0.15);
}

.lp-root .tb-grain {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
}

.lp-root .tb-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 6px;
}

.lp-root .tb-circles span {
    position: absolute;
    border-radius: 48px;
    border: 1px solid rgba(190, 106, 89, 0.18);
}

.lp-root .tb-circles span:nth-child(1) {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
}

.lp-root .tb-circles span:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 40px;
    left: -20px;
}

.lp-root .tb-text {
    padding: 16px 0;
}

.lp-root .tb-label {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #BE6A59;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.lp-root .tb-h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #EEE2DF;
}

.lp-root .tb-h1 .kw-ul {
    text-decoration: underline;
    text-decoration-color: #BE6A59;
    text-underline-offset: 6px;
}

.lp-root .tb-desc {
    font-size: 22px;
    line-height: 1.7;
    color: #CF9F98;
    max-width: 520px;
    margin-bottom: 24px;
}

.lp-root .tb-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-root .tb-badge {
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    color: #141210;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.lp-root .tb-stat {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-root .tb-stat strong {
    font-size: 22px;
    color: #EEE2DF;
    line-height: 1.15;
}

.lp-root .tb-stat span {
    font-size: 14px;
    color: #CF9F98;
}

.lp-root .div-curve {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.lp-root .div-curve svg {
    display: block;
    width: 100%;
}

.lp-root .mod-sec {
    background: #1c1510;
    padding: 48px 0;
    border-top: 1px solid rgba(190, 106, 89, 0.15);
    border-bottom: 1px solid rgba(190, 106, 89, 0.15);
    animation: bg-osc 6s ease-in-out infinite;
}

@keyframes bg-osc {

    0%,
    100% {
        background-color: #1c1510;
    }

    50% {
        background-color: #1f1710;
    }
}

.lp-root .mod-hd {
    text-align: center;
    margin-bottom: 48px;
}

.lp-root .mod-hd h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #EEE2DF;
    margin-bottom: 16px;
}

.lp-root .mod-hd p {
    font-size: 22px;
    line-height: 1.7;
    color: #CF9F98;
    max-width: 560px;
    margin: 0 auto;
}

.lp-root .mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-root .mod-card {
    background: #211a16;
    border-radius: 6px;
    padding: 24px;
    border-top: 3px solid #BE6A59;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.lp-root .mod-card:hover {
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    transform: translateY(-4px);
}

.lp-root .mod-card .mc-num {
    font-size: 42px;
    line-height: 1.15;
    color: #BE6A59;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.lp-root .mod-card h4 {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin-bottom: 8px;
}

.lp-root .mod-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.lp-root .det-sec {
    padding: 48px 0;
    background: #141210;
}

.lp-root .det-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.lp-root .det-main h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #EEE2DF;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid #BE6A59;
}

.lp-root .det-main p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    margin-bottom: 16px;
}

.lp-root .det-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-root .det-list li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
}

.lp-root .det-list li .dl-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #BE6A59;
    flex-shrink: 0;
    margin-top: 6px;
}

.lp-root .det-side {
    background: #1c1510;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    position: relative;
    overflow: hidden;
}

.lp-root .det-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
}

.lp-root .det-side h4 {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin-bottom: 16px;
    text-align: center;
}

.lp-root .det-side .ds-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    display: block;
}

.lp-root .det-side .ds-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(207, 159, 152, 0.12);
    font-size: 14px;
}

.lp-root .det-side .ds-row:last-of-type {
    border-bottom: none;
}

.lp-root .det-side .ds-row span:first-child {
    color: #CF9F98;
}

.lp-root .det-side .ds-row span:last-child {
    color: #EEE2DF;
    font-weight: 600;
}

.lp-root .det-side .ds-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    color: #141210;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
}

.lp-root .det-side .ds-btn:hover {
    opacity: 0.88;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.lp-root .det-side .ds-btn:focus {
    outline: 2px solid #EEE2DF;
    outline-offset: 2px;
}

.lp-root .faq-sec {
    padding: 48px 0;
    background: #1c1510;
    background-image: radial-gradient(circle at 20px 20px, rgba(190, 106, 89, 0.06) 2px, transparent 0);
    background-size: 40px 40px;
}

.lp-root .faq-hd {
    text-align: center;
    margin-bottom: 48px;
}

.lp-root .faq-hd h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #EEE2DF;
    margin-bottom: 16px;
}

.lp-root .faq-hd p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    max-width: 480px;
    margin: 0 auto;
}

.lp-root .faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-root .faq-item {
    background: #211a16;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    border-top: 2px solid rgba(190, 106, 89, 0.3);
}

.lp-root .faq-item h5 {
    font-size: 14px;
    line-height: 1.7;
    color: #EEE2DF;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.lp-root .faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #CF9F98;
    text-align: center;
}

.lp-root .rating-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    padding: 24px;
    background: #211a16;
    border-radius: 6px;
    border-top: 3px solid #BE6A59;
    border-bottom: 3px solid #BE6A59;
    flex-wrap: wrap;
}

.lp-root .rating-strip .rs-score {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    color: #BE6A59;
    letter-spacing: -0.02em;
}

.lp-root .rating-strip .rs-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-root .rating-strip .rs-stars {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.lp-root .rating-strip .rs-star {
    width: 20px;
    height: 20px;
}

.lp-root .rating-strip .rs-count {
    font-size: 14px;
    color: #CF9F98;
}

@media (max-width: 1024px) {
    .lp-root .tb-inner {
        grid-template-columns: 260px 1fr;
        gap: 24px;
    }

    .lp-root .tb-h1 {
        font-size: 42px;
    }

    .lp-root .mod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-root .det-inner {
        grid-template-columns: 1fr;
    }

    .lp-root .det-side {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .lp-root .tb-inner {
        grid-template-columns: 1fr;
    }

    .lp-root .tb-img-col img {
        height: 260px;
    }

    .lp-root .mod-grid {
        grid-template-columns: 1fr;
    }

    .lp-root .faq-cols {
        grid-template-columns: 1fr;
    }

    .lp-root .tb-h1 {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .lp-root .tb-h1 {
        font-size: 42px;
    }

    .lp-root .tb-desc {
        font-size: 14px;
    }

    .lp-root .pg-wrap {
        padding: 0 16px;
    }

    .lp-root .rating-strip {
        flex-direction: column;
        text-align: center;
    }
}

.bse {
    background: #141210;
    color: #EEE2DF;
    overflow-x: clip;
    position: relative;
}

.bse .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.bse .t-block {
    padding: 80px 24px 64px;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
}

.bse .t-img-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.bse .t-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    filter: grayscale(30%) contrast(1.05);
}

.bse .t-img-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #BE6A59;
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
}

.bse .t-img-card::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(190, 106, 89, 0.3);
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
}

.bse .t-img-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
}

.bse .t-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bse .t-num-accent {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #BE6A59;
    font-weight: 700;
    display: block;
}

.bse .t-heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin: 0;
}

.bse .t-desc {
    font-size: 22px;
    line-height: 1.7;
    color: #CF9F98;
    margin: 0;
    max-width: 520px;
}

.bse .t-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #BE6A59;
    border-radius: 48px;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.bse .t-meta {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.55);
    letter-spacing: 0.04em;
}

.bse .t-cta-link {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 6px;
    background: linear-gradient(253deg, #BE6A59 0%, #BE6A59 50%, #CF9F98 100%);
    color: #141210;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.bse .t-cta-link:hover {
    opacity: 0.88;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.bse .fit-sec {
    padding: 80px 0;
    background: #1a1410;
    position: relative;
}

.bse .fit-sec::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(253deg, #BE6A59 0%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.bse .fit-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.bse .fit-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bse .sec-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BE6A59;
}

.bse .sec-h {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: #EEE2DF;
    padding-left: 16px;
    border-left: none;
    position: relative;
}

.bse .sec-h::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 48px;
}

.bse .fit-body {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.8);
    margin: 0;
}

.bse .fit-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .fit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bse .fit-card {
    background: #201c18;
    border-radius: 6px;
    padding: 24px;
    border: 1px solid rgba(190, 106, 89, 0.12);
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.bse .fit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(190, 106, 89, 0.07);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bse .fit-card:hover::after {
    height: 100%;
}

.bse .fit-card-mark {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #BE6A59;
    font-weight: 700;
}

.bse .fit-card-mark.no {
    color: rgba(238, 226, 223, 0.35);
}

.bse .fit-card-txt {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.7);
    margin: 0;
}

.bse .gap-sec {
    padding: 96px 0;
    background: #EEE2DF;
    position: relative;
}

.bse .gap-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.12) 0%, rgba(190, 106, 89, 0.04) 50%, transparent 100%);
    pointer-events: none;
}

.bse .gap-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
}

.bse .gap-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bse .gap-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BE6A59;
}

.bse .gap-h {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: #141210;
    padding-left: 16px;
    position: relative;
}

.bse .gap-h::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 48px;
}

.bse .gap-body {
    font-size: 22px;
    line-height: 1.7;
    color: #3a2e2a;
    margin: 0;
}

.bse .gap-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.bse .gap-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.bse .gap-step-num {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #BE6A59;
    min-width: 48px;
    letter-spacing: -0.03em;
}

.bse .gap-step-txt {
    font-size: 14px;
    line-height: 1.7;
    color: #3a2e2a;
    margin: 0;
    padding-top: 8px;
}

.bse .gap-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.bse .gap-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    filter: grayscale(20%);
}

.bse .gap-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.18) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: 6px;
}

.bse .gap-img-wrap::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(190, 106, 89, 0.4);
    border-radius: 6px;
    pointer-events: none;
}

.bse .voices-sec {
    padding: 80px 0;
    background: #141210;
    position: relative;
}

.bse .voices-sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(253deg, transparent 0%, #CF9F98 100%);
}

.bse .voices-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.bse .voices-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: center;
}

.bse .voices-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BE6A59;
}

.bse .voices-h {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: #EEE2DF;
}

.bse .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bse .voice-card {
    background: #1d1814;
    border-radius: 6px;
    padding: 24px;
    border: 1px solid rgba(207, 159, 152, 0.12);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.bse .voice-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.06) 0%, rgba(207, 159, 152, 0.04) 100%);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bse .voice-card:hover::before {
    height: 100%;
}

.bse .voice-img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.bse .voice-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(40%) contrast(1.05);
}

.bse .voice-quote {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.8);
    margin: 0;
    font-style: italic;
}

.bse .voice-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(207, 159, 152, 0.15);
    padding-top: 16px;
}

.bse .voice-name {
    font-size: 14px;
    font-weight: 700;
    color: #CF9F98;
    letter-spacing: 0.02em;
}

.bse .voice-role {
    font-size: 14px;
    color: rgba(238, 226, 223, 0.45);
    letter-spacing: 0.03em;
}

.bse .after-sec {
    padding: 96px 0 80px;
    background: #1a1410;
    position: relative;
}

.bse .after-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 48px;
    align-items: start;
}

.bse .after-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.bse .after-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bse .after-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: grayscale(50%);
}

.bse .after-img-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, rgba(190, 106, 89, 0.35) 0%, rgba(20, 18, 16, 0.2) 100%);
    pointer-events: none;
}

.bse .after-img-border {
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(190, 106, 89, 0.25);
    border-radius: 6px;
    pointer-events: none;
}

.bse .after-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bse .after-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BE6A59;
}

.bse .after-h {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: #EEE2DF;
    padding-left: 16px;
    position: relative;
}

.bse .after-h::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 48px;
}

.bse .after-body {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.8);
    margin: 0;
}

.bse .after-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bse .after-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #201c18;
    border-radius: 6px;
    border: 1px solid rgba(190, 106, 89, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.45s ease-in-out;
}

.bse .after-item:hover {
    border-color: rgba(190, 106, 89, 0.3);
}

.bse .after-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(190, 106, 89, 0.05);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bse .after-item:hover::after {
    height: 100%;
}

.bse .after-dot {
    width: 8px;
    height: 8px;
    background: #BE6A59;
    border-radius: 48px;
    flex-shrink: 0;
    margin-top: 8px;
}

.bse .after-item-txt {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.75);
    margin: 0;
}

@keyframes rowReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.bse .t-block {
    animation: rowReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bse .fit-inner {
    animation: rowReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.bse .gap-inner {
    animation: rowReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.bse .voices-grid {
    animation: rowReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.bse .after-inner {
    animation: rowReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

@media (max-width: 1024px) {
    .bse .t-block {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }

    .bse .fit-inner {
        grid-template-columns: 1fr;
    }

    .bse .gap-inner {
        grid-template-columns: 1fr;
    }

    .bse .gap-img-wrap {
        display: none;
    }

    .bse .voices-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bse .after-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bse .t-block {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    .bse .t-img-card img {
        height: 280px;
    }

    .bse .t-heading {
        font-size: 42px;
    }

    .bse .voices-grid {
        grid-template-columns: 1fr;
    }

    .bse .fit-row {
        grid-template-columns: 1fr;
    }

    .bse .gap-sec {
        padding: 64px 0;
    }

    .bse .after-sec {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .bse .t-heading {
        font-size: 42px;
    }

    .bse .sec-h,
    .bse .gap-h,
    .bse .voices-h,
    .bse .after-h {
        font-size: 42px;
    }

    .bse .t-num-accent {
        font-size: 42px;
    }
}

.cnt-pg {
    background: #141210;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.cnt-pg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0;
}

.cnt-pg .geo-deco {
    position: fixed;
    border-radius: 48px;
    pointer-events: none;
    z-index: 0;
}

.cnt-pg .geo-deco.d1 {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(190, 106, 89, 0.07);
    top: -120px;
    right: -100px;
}

.cnt-pg .geo-deco.d2 {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(207, 159, 152, 0.06);
    bottom: 80px;
    left: -80px;
}

.cnt-pg .geo-deco.d3 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(238, 226, 223, 0.04);
    top: 40%;
    left: 30%;
}

.cnt-pg .pg-max {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cnt-pg .atm-spot {
    position: absolute;
    border-radius: 48px;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.13;
}

.cnt-pg .atm-spot.s1 {
    width: 400px;
    height: 300px;
    background: #BE6A59;
    top: -60px;
    right: 10%;
}

.cnt-pg .atm-spot.s2 {
    width: 300px;
    height: 200px;
    background: #CF9F98;
    bottom: 40px;
    left: 5%;
}

.cnt-pg .bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 80% 20%, rgba(190, 106, 89, 0.06) 0%, transparent 60%);
    animation: lightsweep 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes lightsweep {
    0% {
        background: radial-gradient(ellipse 600px 400px at 80% 20%, rgba(190, 106, 89, 0.06) 0%, transparent 60%);
    }

    100% {
        background: radial-gradient(ellipse 600px 400px at 20% 80%, rgba(207, 159, 152, 0.07) 0%, transparent 60%);
    }
}

.cnt-pg .eyebrow {
    display: inline-block;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.12em;
    color: #CF9F98;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cnt-pg .divider-cross {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0;
}

.cnt-pg .divider-cross .d-line {
    flex: 1;
    height: 1px;
    background: rgba(207, 159, 152, 0.18);
}

.cnt-pg .divider-cross .d-cross {
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

.cnt-pg .divider-cross .d-cross::before,
.cnt-pg .divider-cross .d-cross::after {
    content: '';
    position: absolute;
    background: rgba(190, 106, 89, 0.5);
    border-radius: 6px;
}

.cnt-pg .divider-cross .d-cross::before {
    width: 14px;
    height: 2px;
    top: 6px;
    left: 0;
}

.cnt-pg .divider-cross .d-cross::after {
    width: 2px;
    height: 14px;
    top: 0;
    left: 6px;
}

.cnt-pg .title-band {
    padding: 80px 0 48px;
    position: relative;
}

.cnt-pg .title-band .bg-anim {
    border-radius: 6px;
}

.cnt-pg .title-band__grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    align-items: end;
}

.cnt-pg .title-band__left h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #EEE2DF;
    margin: 0 0 16px;
}

.cnt-pg .title-band__left h1 .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #BE6A59;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px;
}

.cnt-pg .title-band__right {
    text-align: right;
}

.cnt-pg .title-band__right .since {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.45);
    letter-spacing: 0.06em;
}

.cnt-pg .img-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 48px;
    height: 340px;
}

.cnt-pg .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cnt-pg .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(20, 18, 16, 0.55) 100%);
    pointer-events: none;
}

.cnt-pg .contact-split {
    padding: 48px 0;
    position: relative;
}

.cnt-pg .contact-split__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.cnt-pg .info-col {
    position: relative;
}

.cnt-pg .info-col__head {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: none;
    position: relative;
}

.cnt-pg .info-col__head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 6px;
}

.cnt-pg .info-item {
    margin-bottom: 24px;
}

.cnt-pg .info-item__label {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cnt-pg .info-item__val {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.8);
}

.cnt-pg .info-item__val a {
    color: #EEE2DF;
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnt-pg .info-item__val a:hover {
    color: #BE6A59;
}

.cnt-pg .letter-hover {
    display: inline-flex;
    flex-wrap: wrap;
}

.cnt-pg .letter-hover .lh-ch {
    display: inline-block;
    transition: color 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(238, 226, 223, 0.8);
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(1) {
    color: #BE6A59;
    transition-delay: 0s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(2) {
    color: #BE6A59;
    transition-delay: 0.04s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(3) {
    color: #BE6A59;
    transition-delay: 0.08s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(4) {
    color: #BE6A59;
    transition-delay: 0.12s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(5) {
    color: #BE6A59;
    transition-delay: 0.16s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(6) {
    color: #BE6A59;
    transition-delay: 0.20s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(7) {
    color: #BE6A59;
    transition-delay: 0.24s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(8) {
    color: #BE6A59;
    transition-delay: 0.28s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(9) {
    color: #BE6A59;
    transition-delay: 0.32s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(10) {
    color: #BE6A59;
    transition-delay: 0.36s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(11) {
    color: #BE6A59;
    transition-delay: 0.40s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(12) {
    color: #BE6A59;
    transition-delay: 0.44s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(13) {
    color: #BE6A59;
    transition-delay: 0.48s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(14) {
    color: #BE6A59;
    transition-delay: 0.52s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(15) {
    color: #BE6A59;
    transition-delay: 0.56s;
}

.cnt-pg .letter-hover:hover .lh-ch:nth-child(n+16) {
    color: #BE6A59;
    transition-delay: 0.60s;
}

.cnt-pg .form-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(207, 159, 152, 0.1);
    border-radius: 6px;
    padding: 48px;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cnt-pg .form-col__head {
    font-size: 22px;
    line-height: 1.15;
    color: #EEE2DF;
    margin: 0 0 24px;
    text-align: center;
}

.cnt-pg .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cnt-pg .f-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.cnt-pg .f-field label {
    font-size: 14px;
    line-height: 1.15;
    color: #CF9F98;
    letter-spacing: 0.05em;
}

.cnt-pg .f-field input,
.cnt-pg .f-field select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(207, 159, 152, 0.2);
    border-radius: 6px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.15;
    color: #EEE2DF;
    outline: none;
    transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.cnt-pg .f-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CF9F98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.cnt-pg .f-field select option {
    background: #1e1a18;
    color: #EEE2DF;
}

.cnt-pg .f-field input::placeholder {
    color: rgba(238, 226, 223, 0.3);
}

.cnt-pg .f-field input:focus,
.cnt-pg .f-field select:focus {
    border-color: rgba(190, 106, 89, 0.55);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08), inset 0 2px 6px rgba(190, 106, 89, 0.05);
}

.cnt-pg .f-field input:invalid:not(:placeholder-shown) {
    border-color: rgba(190, 106, 89, 0.7);
}

.cnt-pg .privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

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

.cnt-pg .privacy-row .prv-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.6);
}

.cnt-pg .privacy-row .prv-text a {
    color: #CF9F98;
    text-decoration: underline;
    text-decoration-color: rgba(207, 159, 152, 0.4);
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnt-pg .privacy-row .prv-text a:hover {
    color: #EEE2DF;
}

.cnt-pg .submit-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.15;
    color: #141210;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.cnt-pg .submit-btn:hover {
    opacity: 0.88;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
    transform: translateY(-1px);
}

.cnt-pg .submit-btn:active {
    transform: translateY(0);
    opacity: 1;
}

.cnt-pg .submit-btn:focus-visible {
    outline: 2px solid #EEE2DF;
    outline-offset: 3px;
}

.cnt-pg .meta-strip {
    padding: 48px 0 80px;
    position: relative;
}

.cnt-pg .meta-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.cnt-pg .meta-card {
    background: rgba(238, 226, 223, 0.03);
    border: 1px solid rgba(207, 159, 152, 0.08);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnt-pg .meta-card:hover {
    background: rgba(190, 106, 89, 0.06);
    border-color: rgba(207, 159, 152, 0.18);
}

.cnt-pg .meta-card__num {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #BE6A59;
    display: block;
    margin-bottom: 8px;
}

.cnt-pg .meta-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(238, 226, 223, 0.55);
}

@media (max-width: 1024px) {
    .cnt-pg .title-band__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cnt-pg .title-band__right {
        text-align: left;
    }

    .cnt-pg .contact-split__grid {
        grid-template-columns: 1fr;
    }

    .cnt-pg .title-band__left h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .cnt-pg .f-row {
        grid-template-columns: 1fr;
    }

    .cnt-pg .meta-strip__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cnt-pg .form-col {
        padding: 24px;
    }

    .cnt-pg .title-band {
        padding: 48px 0 24px;
    }
}

@media (max-width: 480px) {
    .cnt-pg .meta-strip__grid {
        grid-template-columns: 1fr;
    }

    .cnt-pg .title-band__left h1 {
        font-size: 42px;
    }
}

.success-pg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0e0b0a;
    padding: 48px 24px;
}

.success-pg .card {
    background: #1a100d;
    border-radius: 6px;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.success-pg .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px 0 rgba(190, 106, 89, 0.08);
}

.success-pg .icon-wrap svg {
    display: block;
}

.success-pg .card-title {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #EEE2DF;
    margin: 0 0 16px;
}

.success-pg .card-body {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #a8968f;
    margin: 0 0 48px;
}

.success-pg .btn-home {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: #EEE2DF;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    text-decoration: none;
    box-shadow: 0 3px 3px 0 rgba(190, 106, 89, 0.05);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease-in-out;
}

.success-pg .btn-home:hover {
    opacity: 0.88;
    box-shadow: 0 9px 44px 0 rgba(190, 106, 89, 0.11);
}

.success-pg .btn-home:focus {
    outline: 2px solid #CF9F98;
    outline-offset: 4px;
}

.success-pg .divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(253deg, #BE6A59 0%, #CF9F98 100%);
    border-radius: 6px;
    margin: 0 auto 24px;
}

@media (max-width: 480px) {
    .success-pg .card {
        padding: 24px 16px;
    }

    .success-pg .card-title {
        font-size: 22px;
    }
}