html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.page-top {
    background: linear-gradient(135deg, #FDFAFD 0%, #f5edf3 60%, #ede0eb 100%);
    border-bottom: 1px solid #D8BCD4;
    position: relative;
}

.util-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(181, 102, 140, 0.12);
}

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

.logo-frame {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px rgba(181, 102, 140, 0.15), 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    border: 2px solid rgba(181, 102, 140, 0.22);
    flex-shrink: 0;
    overflow: hidden;
}

.logo-frame img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1520;
}

.proof-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 102, 140, 0.07);
    border: 1px solid rgba(181, 102, 140, 0.18);
    border-radius: 48px;
    padding: 8px 16px;
}

.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #B5668C;
    flex-shrink: 0;
}

.proof-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.15;
    color: #5a2d45;
    letter-spacing: 0.01em;
}

.nav-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.site-nav {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav li {
    display: flex;
    align-items: stretch;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: #3d1a2c;
    text-decoration: none;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s ease-out;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: #B5668C;
    border-radius: 6px;
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
}

.nav-link:hover {
    color: #B5668C;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:focus {
    background: rgba(216, 188, 212, 0.25);
    outline: none;
    border-radius: 6px;
}

.nav-link.active-pg {
    color: #B5668C;
}

.nav-link.active-pg::after {
    transform: scaleX(1);
}

.page-foot {
    background: #2a1520;
    color: #FDFAFD;
}

.foot-upper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}

.foot-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 220px;
}

.foot-brand-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FDFAFD;
}

.foot-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #D8BCD4;
    max-width: 320px;
}

.foot-contact-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    color: #B5668C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(181, 102, 140, 0.4);
    border-radius: 6px;
    width: fit-content;
    transition: background 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.35s ease-out;
}

.foot-contact-link:hover {
    background: rgba(181, 102, 140, 0.12);
    border-color: #B5668C;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.foot-contact-link:focus {
    background: rgba(216, 188, 212, 0.15);
    outline: none;
}

.foot-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
}

.foot-logo-frame {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: rgba(253, 250, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px rgba(181, 102, 140, 0.2), 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    border: 2px solid rgba(216, 188, 212, 0.3);
    overflow: hidden;
}

.foot-logo-frame img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.foot-policy-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.foot-policy-nav li {
    display: flex;
}

.policy-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: rgba(216, 188, 212, 0.75);
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.policy-link:hover {
    color: #D8BCD4;
}

.policy-link:focus {
    color: #FDFAFD;
    background: rgba(216, 188, 212, 0.1);
    outline: none;
    border-radius: 6px;
    padding: 0 8px;
}

.foot-lower {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px 32px;
    border-top: 1px solid rgba(216, 188, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.foot-copy {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(216, 188, 212, 0.5);
    letter-spacing: 0.01em;
}

.foot-domain {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(181, 102, 140, 0.6);
    letter-spacing: 0.01em;
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #2a1520;
    border-top: 2px solid rgba(181, 102, 140, 0.35);
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
    transform: translateY(100%);
    transition: transform 0.22s ease-out;
    display: none;
}

.consent-bar.consent-visible {
    transform: translateY(0);
}

.consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.consent-text-area {
    flex: 1;
    min-width: 240px;
}

.consent-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #D8BCD4;
    margin: 0 0 8px 0;
}

.consent-policy-lnk {
    color: #B5668C;
    text-decoration: underline;
    transition: color 0.2s ease-out;
}

.consent-policy-lnk:hover {
    color: #D8BCD4;
}

.consent-headline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    color: #FDFAFD;
    margin: 0;
}

.consent-opt-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.consent-opt-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(216, 188, 212, 0.75);
}

.consent-toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 36px;
    height: 20px;
    border-radius: 48px;
    background: rgba(216, 188, 212, 0.2);
    border: 1px solid rgba(181, 102, 140, 0.3);
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease-out;
    flex-shrink: 0;
}

.consent-toggle::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 48px;
    background: #D8BCD4;
    transition: transform 0.2s ease-out;
}

.consent-toggle:checked {
    background: #B5668C;
}

.consent-toggle:checked::before {
    transform: translateX(16px);
}

.consent-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(181, 102, 140, 0.4);
}

.consent-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.consent-btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    padding: 16px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    min-width: 120px;
    min-height: 44px;
    transition: box-shadow 0.25s ease-out, background 0.2s ease-out;
}

.consent-btn:focus {
    outline: none;
}

.btn-accept {
    background: #B5668C;
    color: #FDFAFD;
}

.btn-accept:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    background: #a35a7d;
}

.btn-accept:focus {
    background: rgba(181, 102, 140, 0.85);
}

.btn-decline {
    background: transparent;
    color: #D8BCD4;
    border: 1px solid rgba(216, 188, 212, 0.3);
}

.btn-decline:hover {
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    border-color: rgba(216, 188, 212, 0.6);
}

.btn-decline:focus {
    background: rgba(216, 188, 212, 0.08);
}

@media (max-width: 768px) {
    .util-row {
        padding: 8px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-row {
        padding: 0 16px;
        justify-content: flex-start;
    }

    .nav-link {
        padding: 16px 16px;
        font-size: 14px;
    }

    .nav-link::after {
        left: 16px;
        right: 16px;
    }

    .foot-upper {
        padding: 32px 16px 16px;
        gap: 32px;
        flex-direction: column;
    }

    .foot-right {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .foot-policy-nav {
        align-items: flex-start;
    }

    .foot-lower {
        padding: 16px 16px 32px;
    }

    .consent-inner {
        padding: 16px;
        gap: 16px;
    }

    .consent-btn-group {
        width: 100%;
    }

    .consent-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }

    .proof-chip {
        display: none;
    }

    .site-nav {
        width: 100%;
    }

    .nav-link {
        padding: 16px 8px;
        font-size: 14px;
    }

    .nav-link::after {
        left: 8px;
        right: 8px;
    }
}

.policy-am-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
}

.policy-am-body h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1a24;
    margin-bottom: 32px;
    margin-top: 0;
}

.policy-am-body h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a1a24;
    margin-top: 64px;
    margin-bottom: 16px;
}

.policy-am-body h3 {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: #2a1a24;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-am-body h4 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: #2a1a24;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 8px;
}

.policy-am-body h5 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #3d2233;
    margin-top: 32px;
    margin-bottom: 8px;
}

.policy-am-body h6 {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: #3d2233;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-am-body p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #3d2233;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.policy-am-body ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style-type: disc;
}

.policy-am-body ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style-type: decimal;
}

.policy-am-body li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #3d2233;
    margin-bottom: 8px;
    max-width: 72ch;
}

.policy-am-body li::marker {
    color: #B5668C;
}

.policy-am-body ul ul,
.policy-am-body ol ol,
.policy-am-body ul ol,
.policy-am-body ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.policy-am-body strong,
.policy-am-body b {
    font-weight: 700;
    color: #2a1a24;
}

.policy-am-body em,
.policy-am-body i {
    font-style: italic;
    color: #4d2a3d;
}

.policy-am-body hr {
    border: none;
    border-top: 1px solid #D8BCD4;
    margin-top: 64px;
    margin-bottom: 64px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .policy-am-body {
        padding: 64px 32px;
    }

    .policy-am-body h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .policy-am-body {
        padding: 32px 16px;
    }

    .policy-am-body h1 {
        font-size: 26px;
    }

    .policy-am-body h2 {
        font-size: 20px;
        margin-top: 32px;
    }

    .policy-am-body h3 {
        font-size: 15px;
        margin-top: 32px;
    }

    .policy-am-body h4,
    .policy-am-body h5,
    .policy-am-body h6 {
        font-size: 14px;
        margin-top: 16px;
    }

    .policy-am-body hr {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .policy-am-body {
        padding: 32px 16px;
    }

    .policy-am-body h1 {
        font-size: 26px;
        letter-spacing: -0.01em;
    }

    .policy-am-body h2 {
        font-size: 20px;
    }

    .policy-am-body ul,
    .policy-am-body ol {
        padding-left: 16px;
    }
}

.bdet {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    overflow: hidden;
}

.bdet .art-top {
    padding: 64px 32px 96px;
    position: relative;
    background: linear-gradient(135deg, rgba(181, 102, 140, 0.13) 0%, transparent 55%, rgba(216, 188, 212, 0.10) 100%);
}

.bdet .art-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-47deg,
            transparent,
            transparent 18px,
            rgba(181, 102, 140, 0.04) 18px,
            rgba(181, 102, 140, 0.04) 19px);
    pointer-events: none;
    z-index: 0;
}

.bdet .art-top-in {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.bdet .art-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #B5668C;
    border: 1px solid rgba(181, 102, 140, 0.3);
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 32px;
    line-height: 1.15;
    transition: background 0.2s ease-out, color 0.18s ease-out;
}

.bdet .art-tag:hover {
    background: rgba(181, 102, 140, 0.08);
}

.bdet .art-h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #2a1a22;
    margin: 0 0 32px;
    -webkit-text-stroke: 1px #2a1a22;
    color: transparent;
    animation: reveal-up 0.45s ease-out both;
}

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

.bdet .art-num {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: rgba(181, 102, 140, 0.18);
    font-weight: 700;
    animation: reveal-up 0.38s ease-out 0.08s both;
}

.bdet .art-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5a3a4a;
    background: transparent;
    border: 1px solid rgba(181, 102, 140, 0.25);
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    line-height: 1.15;
    transition: box-shadow 0.22s ease-out, border-color 0.18s ease-out;
    margin-left: auto;
}

.bdet .art-print-btn:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    border-color: rgba(181, 102, 140, 0.5);
}

.bdet .art-print-btn:focus {
    outline: 2px solid #B5668C;
    outline-offset: 2px;
}

.bdet .art-print-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.bdet .img-block {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto 64px;
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
    animation: reveal-up 0.4s ease-out 0.12s both;
}

.bdet .img-block img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.45s ease-out;
}

.bdet .img-block:hover img {
    transform: scale(1.02);
}

.bdet .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(181, 102, 140, 0.45) 0%, rgba(216, 188, 212, 0.3) 100%);
    transition: opacity 0.35s ease-out;
    pointer-events: none;
}

.bdet .img-block:hover .img-overlay {
    opacity: 0;
}

.bdet .corner-br {
    position: absolute;
    pointer-events: none;
}

.bdet .corner-br.tl {
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(181, 102, 140, 0.5);
    border-left: 2px solid rgba(181, 102, 140, 0.5);
}

.bdet .corner-br.br {
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(181, 102, 140, 0.5);
    border-right: 2px solid rgba(181, 102, 140, 0.5);
}

.bdet .body-wrap {
    padding: 0 32px 64px;
    max-width: 860px;
    margin: 0 auto;
}

.bdet .body-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

.bdet .body-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2a1a22;
}

.bdet .body-text p {
    margin: 0 0 16px;
}

.bdet .body-text h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px #2a1a22;
    margin: 32px 0 16px;
}

.bdet .body-text h3 {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a1a22;
    margin: 32px 0 16px;
}

.bdet .body-text ol {
    margin: 0 0 16px;
    padding-left: 16px;
}

.bdet .body-text li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: none;
    padding-left: 16px;
    position: relative;
}

.bdet .body-text li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #B5668C;
}

.bdet .body-text table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 32px 0;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.bdet .body-text caption {
    font-size: 14px;
    color: #5a3a4a;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: 0.04em;
}

.bdet .body-text td {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(216, 188, 212, 0.4);
    color: #2a1a22;
    line-height: 1.7;
}

.bdet .body-text tr:last-child td {
    border-bottom: none;
}

.bdet .body-text tfoot td {
    background: rgba(216, 188, 212, 0.15);
    font-size: 14px;
    color: #5a3a4a;
}

.bdet .body-text blockquote {
    margin: 32px 0;
    padding: 16px 32px;
    background: rgba(253, 250, 253, 1);
    border-radius: 6px;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    font-style: italic;
}

.bdet .body-text abbr {
    text-decoration: underline dotted rgba(181, 102, 140, 0.5);
    cursor: help;
}

.bdet .body-text time {
    color: #5a3a4a;
    font-size: 14px;
}

.bdet .pull-aside {
    position: sticky;
    top: 32px;
}

.bdet .pull-quote {
    background: rgba(216, 188, 212, 0.18);
    border-radius: 6px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    position: relative;
    overflow: hidden;
}

.bdet .pull-quote::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: rgba(181, 102, 140, 0.08);
    pointer-events: none;
}

.bdet .pull-q-text {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    font-style: italic;
    margin: 0;
}

.bdet .glossary-block {
    background: #FDFAFD;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 2px 4px 14px -1px rgba(216, 188, 212, 0.09);
}

.bdet .glossary-block h4 {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.06em;
    color: #5a3a4a;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.bdet .glos-dl {
    margin: 0;
    padding: 0;
}

.bdet .glos-dt {
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #B5668C;
    font-weight: 600;
    margin-top: 16px;
    line-height: 1.15;
}

.bdet .glos-dt:first-of-type {
    margin-top: 0;
}

.bdet .glos-dd {
    font-size: 14px;
    line-height: 1.7;
    color: #2a1a22;
    margin: 4px 0 0 0;
}

.bdet .shift-bg {
    background: linear-gradient(165deg, rgba(216, 188, 212, 0.22) 0%, transparent 60%);
    animation: bg-drift 8s ease-in-out infinite alternate;
}

@keyframes bg-drift {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(12px) rotate(-0.5deg);
    }

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

@media (max-width: 1024px) {
    .bdet .body-grid {
        grid-template-columns: 1fr 220px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .bdet .art-h1 {
        font-size: 26px;
    }

    .bdet .art-num {
        font-size: 26px;
    }

    .bdet .art-top {
        padding: 32px 16px 64px;
    }

    .bdet .body-wrap {
        padding: 0 16px 64px;
    }

    .bdet .body-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bdet .pull-aside {
        position: static;
        order: -1;
    }

    .bdet .img-block img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .bdet .art-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bdet .art-print-btn {
        margin-left: 0;
    }

    .bdet .body-wrap {
        padding: 0 8px 32px;
    }

    .bdet .art-top {
        padding: 32px 8px 64px;
    }
}

@media print {

    .bdet .art-top::before,
    .bdet .img-overlay,
    .bdet .corner-br,
    .bdet .pull-quote::after,
    .bdet .art-print-btn,
    .bdet .art-num,
    .bdet .pull-aside {
        display: none !important;
    }

    .bdet .art-top {
        background: none;
        padding: 16px 0 32px;
    }

    .bdet .body-grid {
        grid-template-columns: 1fr;
    }

    .bdet .img-block {
        box-shadow: none;
    }

    .bdet .img-block img {
        height: auto;
        max-height: 320px;
    }

    .bdet .body-text blockquote {
        box-shadow: none;
        border: 1px solid #D8BCD4;
    }

    .bdet .art-h1 {
        -webkit-text-stroke: 0;
        color: #2a1a22;
    }

    .bdet .body-text h2 {
        -webkit-text-stroke: 0;
        color: #2a1a22;
    }

    .bdet .glossary-block {
        box-shadow: none;
        border: 1px solid #D8BCD4;
    }
}

.abt-auth {
    max-width: 100%;
    overflow-x: hidden;
}

.abt-auth .pg-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.abt-auth .pers-block {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #FDFAFD;
    position: relative;
}

.abt-auth .pers-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #D8BCD4 0%, transparent 45%, transparent 55%, #B5668C18 100%);
    animation: bg-shift 6s ease-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes bg-shift {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.abt-auth .pers-inner {
    position: relative;
    z-index: 1;
}

.abt-auth .pers-top {
    text-align: center;
    margin-bottom: 64px;
}

.abt-auth .pers-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: 1px solid #D8BCD4;
    padding-bottom: 8px;
}

.abt-auth .pers-name {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #2c1a24;
    margin-bottom: 16px;
    -webkit-text-stroke: 1.5px #2c1a24;
    color: transparent;
}

.abt-auth .pers-role {
    font-size: 20px;
    line-height: 1.7;
    color: #4a2e3d;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.abt-auth .pers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.abt-auth .pers-img-col {
    position: relative;
}

.abt-auth .pers-img-frame {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
    position: relative;
}

.abt-auth .pers-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out;
}

.abt-auth .pers-img-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #B5668C44 0%, transparent 60%);
    transition: opacity 0.25s ease-out;
    pointer-events: none;
}

.abt-auth .pers-img-frame:hover::after {
    opacity: 0;
}

.abt-auth .pers-img-frame:hover img {
    transform: scale(1.02);
}

.abt-auth .pers-deco {
    position: absolute;
    top: 16px;
    left: -16px;
    width: calc(100% + 8px);
    height: calc(100% - 8px);
    border: 1.5px dashed #D8BCD4;
    border-radius: 6px;
    pointer-events: none;
    z-index: 0;
}

.abt-auth .pers-img-frame {
    position: relative;
    z-index: 1;
}

.abt-auth .pers-txt-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt-auth .pers-bio-head {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    -webkit-text-stroke: 1px #2c1a24;
    color: transparent;
    margin-bottom: 8px;
}

.abt-auth .pers-bio-txt {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
}

.abt-auth .pers-pull {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    border-top: 1px solid #D8BCD4;
    border-bottom: 1px solid #D8BCD4;
    padding-top: 16px;
    padding-bottom: 16px;
}

.abt-auth .pers-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt-auth .stat-item {
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: box-shadow 0.2s ease-out;
}

.abt-auth .stat-item:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.abt-auth .stat-num {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #B5668C;
    display: block;
    margin-bottom: 8px;
}

.abt-auth .stat-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5a3a4a;
    letter-spacing: 0.02em;
}

.abt-auth .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 48px;
}

.abt-auth .wave-div svg {
    display: block;
    width: 100%;
    height: 48px;
}

.abt-auth .work-block {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    position: relative;
}

.abt-auth .work-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #FDFAFD 0%, #fff 100%);
    pointer-events: none;
    z-index: 0;
}

.abt-auth .work-inner {
    position: relative;
    z-index: 1;
}

.abt-auth .work-head-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
}

.abt-auth .work-heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    -webkit-text-stroke: 1.5px #2c1a24;
    color: transparent;
}

.abt-auth .work-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
}

.abt-auth .work-layout {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 64px;
    align-items: start;
}

.abt-auth .work-imgs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-auth .work-img-main {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    position: relative;
}

.abt-auth .work-img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.abt-auth .work-img-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #B5668C33 0%, transparent 50%);
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.abt-auth .work-img-main:hover::after {
    opacity: 0;
}

.abt-auth .work-img-main:hover img {
    transform: scale(1.03);
}

.abt-auth .work-img-sm {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    position: relative;
}

.abt-auth .work-img-sm img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out;
}

.abt-auth .work-img-sm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D8BCD455;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.abt-auth .work-img-sm:hover::after {
    opacity: 0;
}

.abt-auth .work-img-sm:hover img {
    transform: scale(1.04);
}

.abt-auth .work-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt-auth .work-topic-head {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    -webkit-text-stroke: 1px #2c1a24;
    color: transparent;
    margin-bottom: 16px;
}

.abt-auth .work-topic-txt {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
}

.abt-auth .work-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-auth .work-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
    padding-left: 16px;
    position: relative;
}

.abt-auth .work-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #B5668C;
}

.abt-auth .work-pull-right {
    text-align: right;
}

.abt-auth .work-pull-phrase {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    display: inline-block;
    max-width: 360px;
    border-top: 1px solid #D8BCD4;
    padding-top: 16px;
}

.abt-auth .work-cta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.abt-auth .btn-primary {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: #fff;
    background: #B5668C;
    padding: 16px 32px;
    border-radius: 48px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: box-shadow 0.2s ease-out, background 0.15s ease-out;
}

.abt-auth .btn-primary:hover {
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
    background: #a05278;
}

.abt-auth .btn-ghost {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: #B5668C;
    background: transparent;
    padding: 16px 32px;
    border-radius: 48px;
    text-decoration: none;
    border: 1.5px solid #D8BCD4;
    cursor: pointer;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
}

.abt-auth .btn-ghost:hover {
    border-color: #B5668C;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.abt-auth .leaf-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    opacity: 0.04;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 1024px) {
    .abt-auth .pers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .abt-auth .work-head-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-auth .work-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .abt-auth .pers-name {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .abt-auth .pg-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .abt-auth .pers-block {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .abt-auth .pers-top {
        margin-bottom: 32px;
    }

    .abt-auth .pers-name {
        font-size: 48px;
    }

    .abt-auth .pers-stats {
        grid-template-columns: 1fr 1fr;
    }

    .abt-auth .work-block {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .abt-auth .work-head-row {
        margin-bottom: 32px;
    }

    .abt-auth .work-heading {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .abt-auth .pers-name {
        font-size: 26px;
    }

    .abt-auth .pers-stats {
        grid-template-columns: 1fr;
    }

    .abt-auth .work-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .abt-auth .work-heading {
        font-size: 26px;
    }

    .abt-auth .pers-grid {
        gap: 32px;
    }
}

.blg-pg {
    max-width: 100%;
    overflow-x: hidden;
}

.blg-pg .pg-bound {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.blg-pg .ttl-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(170deg, #FDFAFD 0%, #D8BCD4 40%, #FDFAFD 100%);
    position: relative;
    text-align: center;
}

.blg-pg .ttl-band::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-top: 1px solid #B5668C;
    border-left: 1px solid #B5668C;
    border-radius: 6px 0 0 0;
    pointer-events: none;
}

.blg-pg .ttl-band::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-bottom: 1px solid #B5668C;
    border-right: 1px solid #B5668C;
    border-radius: 0 0 6px 0;
    pointer-events: none;
}

.blg-pg .pg-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blg-pg .pg-h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px #3a1f2e;
    margin-bottom: 16px;
}

.blg-pg .pg-sub {
    font-size: 20px;
    line-height: 1.7;
    color: #4a2d3e;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.blg-pg .wave-div {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.blg-pg .wave-div svg {
    display: block;
    width: 100%;
}

.blg-pg .posts-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
}

.blg-pg .posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blg-pg .post-card {
    border-radius: 6px;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    background: #FDFAFD;
    overflow: hidden;
    transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
    display: flex;
    flex-direction: column;
}

.blg-pg .post-card:hover {
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
    transform: translateY(-2px);
}

.blg-pg .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blg-pg .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.blg-pg .card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(181, 102, 140, 0.35);
    transition: opacity 0.25s ease-out;
}

.blg-pg .post-card:hover .card-img-wrap::after {
    opacity: 0;
}

.blg-pg .post-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.blg-pg .card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blg-pg .card-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.09em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blg-pg .card-ttl {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a1520;
    margin-bottom: 16px;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease-out;
}

.blg-pg .card-ttl:hover {
    color: #B5668C;
}

.blg-pg .card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5a3a4a;
    margin-bottom: 32px;
    flex: 1;
}

.blg-pg .card-lnk {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #B5668C;
    text-decoration: none;
    border-bottom: 1px solid rgba(181, 102, 140, 0.3);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: border-color 0.2s ease-out, color 0.15s ease-out;
}

.blg-pg .card-lnk:hover {
    color: #8a3d6a;
    border-color: #8a3d6a;
}

.blg-pg .wave-div-2 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.blg-pg .wave-div-2 svg {
    display: block;
    width: 100%;
}

.blg-pg .about-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #FDFAFD;
    position: relative;
}

.blg-pg .about-band::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #B5668C 40%, #D8BCD4 80%, transparent);
}

.blg-pg .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.blg-pg .about-img-col {
    position: relative;
}

.blg-pg .about-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
}

.blg-pg .about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-out;
}

.blg-pg .about-img-wrap:hover img {
    transform: scale(1.03);
}

.blg-pg .about-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(181, 102, 140, 0.3);
    z-index: 1;
    transition: opacity 0.3s ease-out;
    border-radius: 6px;
}

.blg-pg .about-img-wrap:hover::before {
    opacity: 0;
}

.blg-pg .about-curve {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid #D8BCD4;
    border-left: 2px solid #D8BCD4;
    border-radius: 0 0 0 48px;
    pointer-events: none;
}

.blg-pg .about-eyebrow {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blg-pg .about-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px #2a1520;
    margin-bottom: 16px;
}

.blg-pg .about-pull {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    margin-bottom: 16px;
}

.blg-pg .about-body {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2d3e;
    margin-bottom: 32px;
}

.blg-pg .about-btn {
    display: inline-block;
    font-size: 15px;
    color: #B5668C;
    text-decoration: none;
    padding: 16px 32px;
    border: 1px solid #B5668C;
    border-radius: 6px;
    transition: box-shadow 0.2s ease-out, background 0.2s ease-out, color 0.15s ease-out;
}

.blg-pg .about-btn:hover {
    background: #B5668C;
    color: #fff;
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
}

.blg-pg .tips-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    animation: bg-shift 15s linear infinite;
}

@keyframes bg-shift {
    0% {
        background-color: #fff;
    }

    50% {
        background-color: #FDFAFD;
    }

    100% {
        background-color: #fff;
    }
}

.blg-pg .tips-band .pg-bound {
    position: relative;
}

.blg-pg .tips-intro-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: start;
}

.blg-pg .tips-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px #2a1520;
}

.blg-pg .tips-intro-body {
    padding-top: 8px;
}

.blg-pg .tips-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    margin-bottom: 16px;
}

.blg-pg .tips-body {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2d3e;
}

.blg-pg .tips-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blg-pg .tip-item {
    padding: 32px;
    border-radius: 6px;
    background: #FDFAFD;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: box-shadow 0.35s ease-out;
    position: relative;
    overflow: hidden;
}

.blg-pg .tip-item:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.blg-pg .tip-num {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px #D8BCD4;
    display: block;
    margin-bottom: 8px;
}

.blg-pg .tip-ttl {
    font-size: 15px;
    line-height: 1.15;
    color: #2a1520;
    font-weight: 700;
    margin-bottom: 8px;
}

.blg-pg .tip-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5a3a4a;
}

.blg-pg .word-hover span {
    display: inline;
    transition: background 0.2s ease-out;
    border-radius: 6px;
    padding: 0 2px;
}

.blg-pg .word-hover span:hover {
    background: rgba(216, 188, 212, 0.4);
}

.blg-pg .nl-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(135deg, #FDFAFD 0%, #D8BCD4 50%, #FDFAFD 100%);
    position: relative;
}

.blg-pg .nl-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #B5668C 50%, transparent);
}

.blg-pg .nl-inner {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.blg-pg .nl-eyebrow {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blg-pg .nl-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1520;
    margin-bottom: 16px;
}

.blg-pg .nl-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2d3e;
    margin-bottom: 32px;
}

.blg-pg .nl-form {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.blg-pg .nl-input {
    flex: 1;
    font-size: 15px;
    padding: 16px;
    border: 1px solid rgba(181, 102, 140, 0.3);
    border-radius: 6px;
    background: #fff;
    color: #2a1520;
    box-shadow: inset 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: border-color 0.2s ease-out;
    outline: none;
}

.blg-pg .nl-input::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #5a3a4a;
}

.blg-pg .nl-input:focus {
    border-color: #B5668C;
}

.blg-pg .nl-btn {
    font-size: 15px;
    color: #fff;
    background: #B5668C;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.25s ease-out, background 0.2s ease-out;
    white-space: nowrap;
}

.blg-pg .nl-btn:hover {
    background: #8a3d6a;
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
}

.blg-pg .nl-btn:focus {
    outline: 2px solid #2a1520;
    outline-offset: 2px;
}

.blg-pg .svc-band {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #FDFAFD;
}

.blg-pg .svc-head {
    text-align: center;
    margin-bottom: 64px;
}

.blg-pg .svc-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px #2a1520;
    margin-bottom: 16px;
}

.blg-pg .svc-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #5a3a4a;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.blg-pg .svc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blg-pg .svc-card {
    padding: 32px;
    border-radius: 48px;
    background: #fff;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    text-align: center;
    transition: box-shadow 0.3s ease-out, transform 0.25s ease-out;
}

.blg-pg .svc-card:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    transform: translateY(-3px);
}

.blg-pg .svc-icon {
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.blg-pg .svc-ttl {
    font-size: 15px;
    line-height: 1.15;
    color: #2a1520;
    font-weight: 700;
    margin-bottom: 8px;
}

.blg-pg .svc-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5a3a4a;
    margin-bottom: 16px;
}

.blg-pg .svc-lnk {
    font-size: 14px;
    color: #B5668C;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(181, 102, 140, 0.3);
    transition: border-color 0.2s ease-out;
}

.blg-pg .svc-lnk:hover {
    border-color: #B5668C;
}

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

    .blg-pg .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .blg-pg .tips-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .blg-pg .svc-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .blg-pg .tips-intro-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .blg-pg .pg-h1 {
        font-size: 26px;
    }

    .blg-pg .about-h2 {
        font-size: 26px;
    }

    .blg-pg .tips-h2 {
        font-size: 26px;
    }

    .blg-pg .pg-bound {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .blg-pg .about-layout {
        grid-template-columns: 1fr;
    }

    .blg-pg .about-img-wrap img {
        height: 300px;
    }

    .blg-pg .tips-intro-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blg-pg .tips-list {
        grid-template-columns: 1fr;
    }

    .blg-pg .nl-form {
        flex-direction: column;
    }

    .blg-pg .nl-input {
        width: 100%;
    }

    .blg-pg .svc-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blg-pg .ttl-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .posts-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .about-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .tips-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .nl-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .svc-band {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .blg-pg .card-body {
        padding: 16px;
    }
}

.srvs-pg {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.srvs-pg .load-drop {
    animation: dropSettle 0.45s ease-out both;
}

.srvs-pg .load-drop-2 {
    animation: dropSettle 0.38s ease-out 0.1s both;
}

.srvs-pg .load-drop-3 {
    animation: dropSettle 0.32s ease-out 0.2s both;
}

@keyframes dropSettle {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }

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

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.04;
    }

    50% {
        opacity: 0.11;
    }
}

.srvs-pg .pg-top {
    padding: 64px 32px;
    position: relative;
    background: #FDFAFD;
}

.srvs-pg .pg-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.srvs-pg .pg-top-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.srvs-pg .pg-top-lines::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 80px;
    height: 80px;
    border-top: 1.5px solid #B5668C;
    border-left: 1.5px solid #B5668C;
    border-radius: 0;
    opacity: 0.35;
}

.srvs-pg .pg-top-lines::after {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-bottom: 1.5px solid #D8BCD4;
    border-right: 1.5px solid #D8BCD4;
    border-radius: 0;
    opacity: 0.45;
}

.srvs-pg .pg-txt-col {
    position: relative;
    z-index: 1;
}

.srvs-pg .pg-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.srvs-pg .pg-h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #2a1f28;
    margin-bottom: 16px;
    -webkit-text-stroke: 0;
}

.srvs-pg .pg-h1 .outlined-word {
    -webkit-text-stroke: 1.5px #B5668C;
    color: transparent;
}

.srvs-pg .pg-h1 .underlined-kw {
    text-decoration: underline;
    text-decoration-color: #B5668C;
    text-underline-offset: 6px;
}

.srvs-pg .pg-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3848;
    max-width: 420px;
}

.srvs-pg .pg-img-col {
    position: relative;
}

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

.srvs-pg .img-border-wrap::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 1.5px solid #D8BCD4;
    border-radius: 6px;
    z-index: 0;
    pointer-events: none;
}

.srvs-pg .img-border-wrap img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    filter: brightness(0.82) saturate(0.9);
    transition: filter 0.25s ease-out;
}

.srvs-pg .img-border-wrap:hover img {
    filter: brightness(1) saturate(1);
}

.srvs-pg .img-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 6px;
    background: linear-gradient(160deg, rgba(181, 102, 140, 0.22) 0%, transparent 60%);
    transition: opacity 0.25s ease-out;
    pointer-events: none;
}

.srvs-pg .img-border-wrap:hover .img-overlay {
    opacity: 0;
}

.srvs-pg .diag-divider-a {
    width: 100%;
    height: 48px;
    background: #FDFAFD;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.srvs-pg .offers-band {
    background: #fff;
    padding: 64px 32px;
    position: relative;
}

.srvs-pg .offers-band-edge {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B5668C 0%, #D8BCD4 100%);
    border-radius: 0 6px 6px 0;
}

.srvs-pg .offers-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1f28;
    margin-bottom: 8px;
    -webkit-text-stroke: 1px #2a1f28;
    color: transparent;
}

.srvs-pg .offers-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3848;
    margin-bottom: 32px;
    max-width: 560px;
}

.srvs-pg .cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.srvs-pg .svc-card {
    background: #FDFAFD;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: box-shadow 0.22s ease-out, transform 0.22s ease-out;
    position: relative;
}

.srvs-pg .svc-card:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    transform: translateY(-3px);
}

.srvs-pg .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srvs-pg .card-icon svg {
    width: 36px;
    height: 36px;
}

.srvs-pg .card-h4 {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a1f28;
    margin-bottom: 8px;
}

.srvs-pg .card-p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #5a4558;
}

.srvs-pg .card-dash-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.srvs-pg .card-dash-list li {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #5a4558;
    padding-left: 16px;
    position: relative;
}

.srvs-pg .card-dash-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #B5668C;
}

.srvs-pg .diag-divider-b {
    width: 100%;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.srvs-pg .process-band {
    background: #FDFAFD;
    padding: 64px 32px;
    position: relative;
}

.srvs-pg .process-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.srvs-pg .process-grid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#B5668C 1px, transparent 1px),
        linear-gradient(90deg, #B5668C 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridPulse 4s ease-in-out infinite;
}

.srvs-pg .process-inner {
    position: relative;
    z-index: 1;
}

.srvs-pg .process-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1f28;
    margin-bottom: 8px;
    -webkit-text-stroke: 1px #2a1f28;
    color: transparent;
}

.srvs-pg .process-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3848;
    margin-bottom: 32px;
    max-width: 520px;
}

.srvs-pg .steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.srvs-pg .step-item {
    background: #fff;
    border-radius: 6px;
    padding: 32px 16px;
    box-shadow: 2px 1px 5px -1px rgba(216, 188, 212, 0.08);
    text-align: center;
    transition: box-shadow 0.35s ease-out;
}

.srvs-pg .step-item:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.srvs-pg .step-num {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 1.5px #B5668C;
    color: transparent;
    display: block;
    margin-bottom: 8px;
}

.srvs-pg .step-h5 {
    font-size: 15px;
    line-height: 1.15;
    color: #2a1f28;
    margin-bottom: 8px;
}

.srvs-pg .step-p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #5a4558;
}

.srvs-pg .diag-divider-c {
    width: 100%;
    height: 48px;
    background: #FDFAFD;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}

.srvs-pg .detail-band {
    background: #fff;
    padding: 64px 32px;
    position: relative;
}

.srvs-pg .detail-band-edge {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D8BCD4 0%, #B5668C 100%);
    border-radius: 6px 0 0 6px;
}

.srvs-pg .detail-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.srvs-pg .detail-divider {
    display: none;
}

.srvs-pg .detail-left {
    position: relative;
}

.srvs-pg .detail-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    -webkit-text-stroke: 1px #2a1f28;
    color: transparent;
}

.srvs-pg .detail-body {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3848;
    margin-bottom: 16px;
}

.srvs-pg .detail-pull {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    border-top: 1.5px solid #D8BCD4;
    padding-top: 16px;
    margin-top: 16px;
}

.srvs-pg .detail-right {
    position: relative;
}

.srvs-pg .detail-right-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    filter: brightness(0.8) saturate(0.85);
    transition: filter 0.28s ease-out;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.srvs-pg .detail-right-img:hover {
    filter: brightness(1) saturate(1);
}

.srvs-pg .detail-col-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, #D8BCD4 30%, #D8BCD4 70%, transparent);
    pointer-events: none;
}

.srvs-pg .leaf-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 220px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.06;
}

.srvs-pg .leaf-pattern svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .srvs-pg .pg-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .srvs-pg .cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .srvs-pg .steps-row {
        grid-template-columns: 1fr 1fr;
    }

    .srvs-pg .detail-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .srvs-pg .detail-col-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .srvs-pg .pg-top {
        padding: 32px 16px;
    }

    .srvs-pg .pg-h1 {
        font-size: 26px;
    }

    .srvs-pg .offers-band {
        padding: 32px 16px;
    }

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

    .srvs-pg .process-band {
        padding: 32px 16px;
    }

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

    .srvs-pg .detail-band {
        padding: 32px 16px;
    }

    .srvs-pg .detail-two-col {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .srvs-pg .steps-row {
        grid-template-columns: 1fr;
    }

    .srvs-pg .pg-h1 {
        font-size: 26px;
    }
}

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

.frnt .pg-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.frnt .outlined-text {
    -webkit-text-stroke: 1.5px #B5668C;
    color: transparent;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.frnt .dash-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frnt .dash-list li {
    padding-left: 16px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a2a;
}

.frnt .dash-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #B5668C;
}

.frnt .pull-phrase {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    font-style: italic;
    border-top: 1px solid #D8BCD4;
    padding-top: 16px;
    margin-top: 16px;
}

.frnt .band-div {
    width: 100%;
    height: 6px;
    background: #B5668C;
    opacity: 0.18;
}

.frnt .band-div-solid {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #B5668C 30%, #D8BCD4 70%, transparent 100%);
}

.frnt .band-div-light {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D8BCD4 50%, transparent 100%);
}

.frnt .title-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    border-top: 2px solid #D8BCD4;
    border-bottom: 2px solid #B5668C;
    position: relative;
}

.frnt .title-blk-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.frnt .title-img-card {
    flex: 0 0 280px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.frnt .title-img-card img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out, filter 0.25s ease-out;
    filter: brightness(0.88);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 1) 45%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 1) 45%);
}

.frnt .title-img-card:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.frnt .dots-path {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.frnt .dot {
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #FDFAFD;
    opacity: 0.8;
}

.frnt .dot:nth-child(2) {
    opacity: 0.5;
}

.frnt .dot:nth-child(3) {
    opacity: 0.3;
}

.frnt .title-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .title-eyebrow {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #B5668C;
    text-transform: uppercase;
}

.frnt .title-h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1e1e1e;
    margin: 0;
}

.frnt .title-manifesto {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 520px;
}

.frnt .title-manifesto strong {
    color: #B5668C;
}

.frnt .title-accent-line {
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
    border-top: 1px solid #D8BCD4;
    padding-top: 16px;
}

.frnt .posts-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #FDFAFD;
    position: relative;
}

.frnt .posts-blk-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B5668C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.frnt .posts-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #B5668C;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.frnt .posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    position: relative;
}

.frnt .post-card {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease-out;
}

.frnt .post-card:hover {
    box-shadow: 2px 10px 60px -1px rgba(181, 102, 140, 0.10);
}

.frnt .post-img-wrap {
    position: relative;
    overflow: hidden;
}

.frnt .post-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out, filter 0.3s ease-out;
    filter: brightness(0.92) saturate(0.85);
}

.frnt .post-card:hover .post-img-wrap img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
}

.frnt .post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(181, 102, 140, 0.18) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.25s ease-out;
}

.frnt .post-card:hover .post-overlay {
    opacity: 0;
}

.frnt .post-tag {
    display: inline-block;
    font-size: 14px;
    color: #B5668C;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.frnt .post-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.frnt .post-title {
    font-size: 20px;
    line-height: 1.15;
    color: #1e1e1e;
    margin: 0;
    letter-spacing: -0.01em;
}

.frnt .post-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.frnt .post-link {
    margin-top: 16px;
    display: inline-block;
    font-size: 14px;
    color: #B5668C;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #D8BCD4;
    padding-bottom: 2px;
    transition: border-color 0.2s ease-out, color 0.2s ease-out;
    align-self: flex-start;
}

.frnt .post-link:hover {
    color: #8a3d6a;
    border-color: #B5668C;
}

.frnt .post-card-sm {
    border-radius: 6px;
    background: #fff;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease-out;
}

.frnt .post-card-sm:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.frnt .post-card-sm .post-img-wrap img {
    height: 150px;
}

.frnt .underrated-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 64px;
    margin-left: 32px;
    margin-right: 32px;
    border-top: 2px solid #D8BCD4;
    border-bottom: 2px solid #D8BCD4;
    position: relative;
}

.frnt .underrated-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.frnt .underrated-label-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.frnt .underrated-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
}

.frnt .underrated-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.frnt .underrated-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.frnt .u-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.frnt .u-num {
    font-size: 26px;
    line-height: 1.15;
    color: #D8BCD4;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-top: 4px;
}

.frnt .u-text-h {
    font-size: 15px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0 0 8px 0;
    line-height: 1.15;
}

.frnt .u-text-p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.frnt .arcs-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(170deg, #FDFAFD 0%, #fff 40%, #FDFAFD 100%);
}

.frnt .arcs-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.frnt .arcs-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.frnt .arcs-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1e1e1e;
    margin: 0;
}

.frnt .arcs-note {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 340px;
    text-align: right;
}

.frnt .arcs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.frnt .arc-item {
    border-radius: 6px;
    padding: 32px;
    background: #fff;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.frnt .arc-item:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    transform: translateY(-2px);
}

.frnt .arc-parts {
    font-size: 14px;
    color: #B5668C;
    letter-spacing: 0.06em;
}

.frnt .arc-h {
    font-size: 15px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.15;
}

.frnt .arc-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.frnt .arc-link {
    margin-top: 8px;
    font-size: 14px;
    color: #B5668C;
    text-decoration: none;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease-out;
}

.frnt .arc-link:hover {
    border-color: #B5668C;
}

.frnt .map-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    border-top: 2px solid #B5668C;
    border-bottom: 2px solid #D8BCD4;
    margin-left: 32px;
    margin-right: 32px;
    border-radius: 6px;
}

.frnt .map-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.frnt .map-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

.frnt .map-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.frnt .map-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1e1e1e;
    margin: 0;
}

.frnt .map-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.frnt .tag-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.frnt .tag-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 48px;
    font-size: 14px;
    color: #B5668C;
    background: #FDFAFD;
    border: 1px solid #D8BCD4;
    text-decoration: none;
    transition: background 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out;
    cursor: pointer;
}

.frnt .tag-pill:hover {
    background: #B5668C;
    color: #fff;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.frnt .map-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .map-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D8BCD4;
}

.frnt .map-stat:last-child {
    border-bottom: none;
}

.frnt .map-num {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #B5668C;
    font-weight: 700;
}

.frnt .map-stat-label {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.frnt .habit-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.frnt .habit-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: panBg 18s linear infinite alternate;
    filter: brightness(0.18) saturate(0.4);
    z-index: 0;
}

@keyframes panBg {
    from {
        transform: translateX(0) scale(1.08);
    }

    to {
        transform: translateX(-4%) scale(1.08);
    }
}

.frnt .habit-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.frnt .habit-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .habit-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
    -webkit-text-stroke: 1.5px #D8BCD4;
    color: transparent;
}

.frnt .habit-p {
    font-size: 15px;
    line-height: 1.7;
    color: #e0d0d8;
    margin: 0;
}

.frnt .habit-big-line {
    font-size: 20px;
    line-height: 1.7;
    color: #D8BCD4;
    font-style: italic;
}

.frnt .habit-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .habit-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 6px;
    background: rgba(253, 250, 253, 0.06);
    border: 1px solid rgba(216, 188, 212, 0.2);
    transition: background 0.25s ease-out;
    animation: stepIn 0.4s ease-out both;
}

.frnt .habit-step:nth-child(1) {
    animation-delay: 0.1s;
}

.frnt .habit-step:nth-child(2) {
    animation-delay: 0.22s;
}

.frnt .habit-step:nth-child(3) {
    animation-delay: 0.34s;
}

.frnt .habit-step:nth-child(4) {
    animation-delay: 0.46s;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: rotate(-1.5deg) translateY(8px);
    }

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

.frnt .habit-step:hover {
    background: rgba(181, 102, 140, 0.12);
}

.frnt .habit-step-num {
    font-size: 14px;
    color: #B5668C;
    font-weight: 700;
    min-width: 24px;
    padding-top: 2px;
}

.frnt .habit-step-text {
    font-size: 14px;
    line-height: 1.7;
    color: #d0c0cc;
}

.frnt .scale-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #FDFAFD;
    position: relative;
}

.frnt .scale-blk-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B5668C' fill-opacity='0.025'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.frnt .scale-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    position: relative;
}

.frnt .scale-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
}

.frnt .scale-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.frnt .scale-h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1e1e1e;
    margin: 0;
}

.frnt .scale-body {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.frnt .scale-pull {
    font-size: 20px;
    line-height: 1.7;
    color: #B5668C;
    font-style: italic;
    border-top: 1px solid #D8BCD4;
    padding-top: 16px;
}

.frnt .scale-link {
    display: inline-block;
    font-size: 14px;
    color: #B5668C;
    text-decoration: none;
    border-bottom: 1px solid #D8BCD4;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.frnt .scale-link:hover {
    border-color: #B5668C;
    box-shadow: 0 2px 0 0 rgba(181, 102, 140, 0.15);
}

.frnt .scale-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.frnt .scale-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.frnt .scale-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out, filter 0.25s ease-out;
    filter: brightness(0.9) saturate(0.8);
}

.frnt .scale-img-wrap:hover img {
    transform: scale(1.03);
    filter: brightness(1) saturate(1);
}

.frnt .scale-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(181, 102, 140, 0.2) 0%, transparent 55%);
    pointer-events: none;
    transition: opacity 0.25s ease-out;
}

.frnt .scale-img-wrap:hover .scale-img-overlay {
    opacity: 0;
}

.frnt .scale-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.frnt .scale-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 2px 1px 5px -1px rgba(181, 102, 140, 0.08);
    transition: box-shadow 0.2s ease-out;
}

.frnt .scale-metric:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

.frnt .scale-metric-num {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #B5668C;
    font-weight: 700;
}

.frnt .scale-metric-label {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 1024px) {
    .frnt .title-blk-inner {
        gap: 32px;
    }

    .frnt .title-img-card {
        flex: 0 0 220px;
    }

    .frnt .title-img-card img {
        width: 220px;
        height: 260px;
    }

    .frnt .title-h1 {
        font-size: 48px;
    }

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

    .frnt .underrated-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .frnt .underrated-blk {
        padding-left: 32px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .frnt .arcs-row {
        grid-template-columns: 1fr 1fr;
    }

    .frnt .map-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .frnt .habit-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .frnt .scale-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .frnt .pg-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .frnt .title-blk {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .frnt .title-blk-inner {
        flex-direction: column;
        gap: 16px;
    }

    .frnt .title-img-card {
        flex: none;
        width: 100%;
    }

    .frnt .title-img-card img {
        width: 100%;
        height: 200px;
    }

    .frnt .title-h1 {
        font-size: 26px;
    }

    .frnt .arcs-row {
        grid-template-columns: 1fr;
    }

    .frnt .arcs-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .frnt .arcs-note {
        text-align: left;
    }

    .frnt .scale-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .frnt .map-blk {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .frnt .underrated-blk {
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
    }

    .frnt .posts-blk {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .frnt .habit-blk {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .frnt .scale-blk {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .frnt .title-h1 {
        font-size: 26px;
    }

    .frnt .scale-metrics {
        grid-template-columns: 1fr;
    }

    .frnt .map-num {
        font-size: 26px;
    }

    .frnt .habit-h2 {
        font-size: 26px;
    }

    .frnt .underrated-h2 {
        font-size: 26px;
    }
}

.success-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    background-color: #FDFAFD;
}

.success-pg .inner-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success-pg .icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    border: 2px solid #B5668C;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
}

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

.success-pg .success-heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1b1218;
    margin: 0 0 16px;
    -webkit-text-stroke: 1.5px #1b1218;
    color: transparent;
}

.success-pg .success-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2830;
    margin: 0 0 32px;
}

.success-pg .divider-line {
    width: 48px;
    height: 2px;
    background: #B5668C;
    border-radius: 6px;
    margin: 0 auto 32px;
    opacity: 0.5;
}

.success-pg .detail-note {
    font-size: 14px;
    line-height: 1.7;
    color: #5c3d4a;
    margin: 0 0 32px;
}

.success-pg .back-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #B5668C;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    border: 1.5px solid #D8BCD4;
    background: transparent;
    transition: box-shadow 0.25s ease-out, border-color 0.2s ease-out, color 0.18s ease-out;
}

.success-pg .back-link:hover {
    box-shadow: 2px 4px 14px -1px rgba(181, 102, 140, 0.09);
    border-color: #B5668C;
    color: #8f4a6e;
}

.success-pg .back-link:focus {
    outline: 2px solid #B5668C;
    outline-offset: 3px;
}

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

    .success-pg .success-heading {
        font-size: 26px;
        -webkit-text-stroke: 1px #1b1218;
    }

    .success-pg .icon-ring {
        width: 56px;
        height: 56px;
    }
}