@charset "UTF-8";

body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-family: "Inconsolata", monospace;
}

.site-header {
    background: #F4E9EB;
    border-bottom: 2px solid #D9A8B9;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06), 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    padding: 0;
}

.header-top-strip {
    background: #C45E4F;
    padding: 8px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-notice {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #F4E9EB;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.header-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 40px 16px;
    gap: 8px;
}

.brand-logo-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06), 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    border: 1px solid #D9A8B9;
}

.brand-logo-mount img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.brand-name-label {
    font-family: "Inconsolata", monospace;
    font-size: 44px;
    font-weight: 700;
    color: #2a1a17;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
}

.header-nav-row {
    display: flex;
    justify-content: center;
    padding: 0 40px 24px;
}

.primary-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation li {
    margin: 0;
}

.primary-navigation a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #2a1a17;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
    line-height: 1.4;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px;
}

.primary-navigation a:hover {
    background: #fff;
    color: #C45E4F;
    border-color: #D9A8B9;
}

.primary-navigation a:focus {
    outline: 3px solid;
    outline-color: #C45E4F;
    outline-offset: 2px;
    border-radius: 6px;
}

.primary-navigation a.active-link {
    background: #C45E4F;
    color: #F4E9EB;
    border-color: #C45E4F;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

@media (max-width: 600px) {
    .header-top-strip {
        padding: 8px 16px;
    }

    .header-brand-row {
        padding: 16px 16px 8px;
    }

    .brand-name-label {
        font-size: 24px;
    }

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

    .primary-navigation a {
        font-size: 16px;
        padding: 8px 8px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .brand-name-label {
        font-size: 44px;
    }

    .header-brand-row {
        padding: 24px 24px 16px;
    }
}

.site-footer {
    background: #2a1a17;
    color: #F4E9EB;
    padding: 40px 40px 0;
}

.footer-upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(217, 168, 185, 0.25);
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-brand-name {
    font-family: "Inconsolata", monospace;
    font-size: 24px;
    font-weight: 700;
    color: #F4E9EB;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.footer-tagline {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #D9A8B9;
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-heading {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #C45E4F;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 8px;
}

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

.footer-link-list a {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #F4E9EB;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
    border-bottom: 1px solid transparent;
    transition: color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.footer-link-list a:hover {
    color: #D9A8B9;
    border-bottom-color: #D9A8B9;
}

.footer-link-list a:focus {
    outline: 2px solid #C45E4F;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-label {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #C45E4F;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer-contact-item {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #F4E9EB;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.footer-contact-item a {
    color: #F4E9EB;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact-item a:hover {
    color: #D9A8B9;
    border-bottom-color: #D9A8B9;
}

.footer-contact-item a:focus {
    outline: 2px solid #C45E4F;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-lower {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.footer-logo-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #D9A8B9;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

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

.footer-copyright {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #D9A8B9;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 40px 16px 0;
    }

    .footer-upper {
        flex-direction: column;
    }

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

@media (min-width: 601px) and (max-width: 900px) {
    .site-footer {
        padding: 40px 24px 0;
    }
}

.cookie-notice {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
    background: #fff;
    border: 1px solid #D9A8B9;
    border-radius: 12px;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    padding: 24px;
    max-width: 360px;
    width: calc(100vw - 80px);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-notice.sliding-out {
    transform: translateX(-120%);
    opacity: 0;
}

.cookie-notice-heading {
    font-family: "Inconsolata", monospace;
    font-size: 19px;
    font-weight: 700;
    color: #2a1a17;
    letter-spacing: 0.01em;
    line-height: 1.4;
    margin-bottom: 8px;
}

.cookie-notice-body {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #2a1a17;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-uses-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.cookie-uses-list li {
    font-size: 16px;
    color: #2a1a17;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.cookie-uses-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #C45E4F;
    border-radius: 2px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-accept-button {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #F4E9EB;
    background: #C45E4F;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px;
}

.cookie-accept-button:hover {
    background: #2a1a17;
    color: #F4E9EB;
}

.cookie-accept-button:focus {
    outline: 3px solid #C45E4F;
    outline-offset: 2px;
    border-radius: 6px;
}

.cookie-decline-link {
    font-family: "Inconsolata", monospace;
    font-size: 16px;
    color: #2a1a17;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #D9A8B9;
    padding: 8px 0;
    min-height: 44px;
    transition: color 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cookie-decline-link:hover {
    color: #C45E4F;
}

.cookie-decline-link:focus {
    outline: 3px solid #C45E4F;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .cookie-notice {
        top: 16px;
        left: 16px;
        width: calc(100vw - 32px);
        max-width: none;
    }
}

.rules-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 40px;
}

.rules-section h1 {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F4E9EB;
}

.rules-section h2 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin-top: 40px;
    margin-bottom: 16px;
}

.rules-section h3 {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #2a2a2a;
    margin-top: 24px;
    margin-bottom: 16px;
}

.rules-section h4,
.rules-section h5,
.rules-section h6 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #2a2a2a;
    margin-top: 24px;
    margin-bottom: 8px;
}

.rules-section p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.rules-section ul,
.rules-section ol {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2c2c2c;
    margin-bottom: 16px;
    padding-left: 24px;
}

.rules-section ul {
    list-style-type: disc;
}

.rules-section ol {
    list-style-type: decimal;
}

.rules-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.rules-section li::marker {
    color: #C45E4F;
}

.rules-section a {
    color: #C45E4F;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rules-section a:hover {
    color: #9e3d30;
    text-decoration-color: #D9A8B9;
}

.rules-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.rules-section thead {
    background-color: #F4E9EB;
}

.rules-section thead tr {
    border-bottom: 2px solid #D9A8B9;
}

.rules-section th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #1b1b1b;
    font-weight: 700;
}

.rules-section tbody tr {
    border-bottom: 1px solid #F4E9EB;
    transition: background-color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rules-section tbody tr:last-child {
    border-bottom: none;
}

.rules-section tbody tr:hover {
    background-color: #fdf6f7;
}

.rules-section td {
    padding: 16px;
    color: #2c2c2c;
    line-height: 1.6;
    vertical-align: top;
}

.rules-section div {
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .rules-section {
        padding: 40px 24px;
    }

    .rules-section h1 {
        font-size: 44px;
    }

    .rules-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 600px) {
    .rules-section {
        padding: 40px 16px;
    }

    .rules-section h1 {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .rules-section h2 {
        font-size: 19px;
        margin-top: 24px;
    }

    .rules-section h3,
    .rules-section h4,
    .rules-section h5,
    .rules-section h6 {
        font-size: 16px;
    }

    .rules-section th,
    .rules-section td {
        padding: 8px;
    }
}

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

.start .page-limit {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 600px) {
    .start .page-limit {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.start .accent-word {
    color: #C45E4F;
    font-weight: 700;
}

.start .bordered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.start .bordered-list li {
    border-top: 1px solid #D9A8B9;
    padding: 16px 0 16px 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.start .bordered-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: #C45E4F;
    border-radius: 2px;
}

.start .bordered-list li:last-child {
    border-bottom: 1px solid #D9A8B9;
}

.start .two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .start .two-col-text {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.start .body-paragraph {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.start .body-paragraph:last-child {
    margin-bottom: 0;
}

.start .label-tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #C45E4F;
    border: 1px solid #C45E4F;
    border-radius: 4px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.start .divider-hand {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.start .divider-hand svg {
    display: block;
    width: 100%;
    height: 32px;
}

/* ===== SECTION 1: TITLE BLOCK ===== */
.start .title-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #fff;
    position: relative;
}

.start .title-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

@media (max-width: 900px) {
    .start .title-block-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.start .title-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.start .title-image-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    animation: image-fade-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes image-fade-in {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.start .title-dots {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.start .title-dots circle {
    fill: #D9A8B9;
}

.start .title-text-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.start .title-heading {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0;
}

@media (max-width: 1200px) {
    .start .title-heading {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .start .title-heading {
        font-size: 44px;
    }
}

.start .title-description {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
    color: #2a2a2a;
}

.start .title-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.start .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C45E4F;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 24px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #C45E4F;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.start .btn-primary .btn-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    transform: translateX(-24px);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.start .btn-primary .btn-label {
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.start .btn-primary:hover .btn-icon {
    transform: translateX(0);
    opacity: 1;
}

.start .btn-primary:hover .btn-label {
    transform: translateX(8px);
}

.start .btn-primary:hover {
    background: #a84b3d;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.start .btn-primary:focus {
    outline: 2px solid #C45E4F;
    outline-offset: 3px;
}

.start .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #C45E4F;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 24px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #C45E4F;
    transition: background 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden;
    position: relative;
}

.start .btn-secondary .btn-fill {
    position: absolute;
    inset: 0;
    background: #C45E4F;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 4px;
    z-index: 0;
}

.start .btn-secondary .btn-label {
    position: relative;
    z-index: 1;
    transition: color 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.start .btn-secondary:hover .btn-fill {
    transform: scaleX(1);
}

.start .btn-secondary:hover .btn-label {
    color: #fff;
}

.start .btn-secondary:focus {
    outline: 2px solid #C45E4F;
    outline-offset: 3px;
}

/* ===== SECTION 2: OUTCOMES ===== */
.start .outcomes-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #F4E9EB;
}

.start .outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 900px) {
    .start .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.start .outcomes-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0;
}

.start .outcomes-heading span {
    display: block;
}

.start .outcomes-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.start .outcomes-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.start .outcomes-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.start .comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.start .comparison-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.start .comparison-col-head {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 24px;
    background: #2a2a2a;
    color: #fff;
}

.start .comparison-col-head.after {
    background: #C45E4F;
    color: #fff;
}

.start .comparison-row {
    font-size: 16px;
    line-height: 1.6;
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid #F4E9EB;
}

.start .comparison-row:last-child {
    border-bottom: none;
}

.start .comparison-col.after-col .comparison-row {
    background: #fff;
    color: #2a2a2a;
}

/* ===== SECTION 3: PEOPLE ===== */
.start .people-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #fff;
}

.start .people-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 900px) {
    .start .people-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.start .people-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.start .people-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0;
}

.start .people-heading span {
    display: block;
}

.start .people-image-bg {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.start .people-image-bg img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.start .people-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(244, 233, 235, 0.45);
    border-radius: 12px;
}

.start .people-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.start .expert-card {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    background: #fff;
}

.start .expert-portrait {
    width: 80px;
    height: 103px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.start .expert-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.start .expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.start .expert-name {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin: 0;
}

.start .expert-role {
    font-size: 16px;
    color: #C45E4F;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
}

.start .expert-bio {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
}

/* ===== SECTION 4: RECOGNITION ===== */
.start .recognition-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #2a2a2a;
    position: relative;
}

.start .recognition-block .noise-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.start .recognition-inner {
    position: relative;
    z-index: 1;
}

.start .recognition-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 40px 0;
    color: #fff;
}

.start .recognition-heading span {
    display: block;
}

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

@media (max-width: 900px) {
    .start .recognition-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .start .recognition-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.start .recognition-item {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(217, 168, 185, 0.25);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.start .recognition-item:hover {
    border-color: rgba(196, 94, 79, 0.5);
    background: rgba(196, 94, 79, 0.08);
}

.start .recognition-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.start .recognition-item-name {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #fff;
    margin: 0;
}

.start .recognition-item-desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.start .recognition-image-strip {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.start .recognition-image-strip img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ===== SECTION 5: WHAT THIS DOES NOT DO ===== */
.start .limits-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #F4E9EB;
}

.start .limits-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 900px) {
    .start .limits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.start .limits-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 40px 0;
}

.start .limits-heading span {
    display: block;
}

.start .limits-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    position: sticky;
    top: 40px;
}

.start .limits-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ===== SECTION 6: ADAPTIVE METHOD ===== */
.start .method-block {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #fff;
}

.start .method-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 900px) {
    .start .method-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.start .method-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 24px 0;
}

.start .method-heading span {
    display: block;
}

.start .method-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.start .method-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.start .method-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

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

.start .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #C45E4F;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.start .step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.start .step-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
}

.start .step-desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
}

.start .method-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Clip-path reveal animation */
.start .reveal-clip {
    animation: clip-reveal 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes clip-reveal {
    from {
        clip-path: inset(0 50% 0 50%);
    }

    to {
        clip-path: inset(0 0% 0 0%);
    }
}

/* Wavy decorative line */
.start .wavy-line {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.start .wavy-line svg {
    display: block;
    width: 100%;
    height: 24px;
}

.contact-us {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.contact-us .reach-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    padding: 72px 72px 72px 72px;
    background: #F4E9EB;
    position: relative;
}

.contact-us .reach-panel::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #C45E4F;
    opacity: 0.06;
    pointer-events: none;
}

.contact-us .reach-panel::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 60px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #D9A8B9;
    opacity: 0.10;
    pointer-events: none;
    transform: rotate(18deg);
}

.contact-us .reach-image-frame {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.contact-us .reach-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: sepia(0.22) contrast(1.08) brightness(0.96) saturate(0.88);
}

.contact-us .reach-image-frame .film-grain {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
}

.contact-us .reach-image-frame .frame-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(196, 94, 79, 0.25);
    border-radius: 6px;
    pointer-events: none;
}

.contact-us .reach-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.contact-us .reach-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #C45E4F;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-us .reach-heading {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1e2e;
    font-weight: 800;
    margin: 0;
}

.contact-us .reach-heading span {
    display: block;
}

.contact-us .reach-heading .accent-word {
    color: #C45E4F;
}

.contact-us .reach-description {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a4a;
    letter-spacing: 0.01em;
    max-width: 420px;
}

.contact-us .reach-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us .reach-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .reach-contact-list li:hover {
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.contact-us .contact-detail-type {
    font-size: 16px;
    color: #C45E4F;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-us .contact-detail-value {
    font-size: 19px;
    color: #1e1e2e;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.contact-us .contact-detail-value:hover {
    color: #C45E4F;
    transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .form-area {
    background: #fff;
    padding: 72px;
    position: relative;
}

.contact-us .form-area .noise-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.contact-us .form-area .flicker-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C45E4F;
    top: 40px;
    right: 72px;
    animation: flicker-accent 3.5s ease-in-out infinite;
    pointer-events: none;
}

.contact-us .form-area .flicker-dot-two {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D9A8B9;
    top: 56px;
    right: 92px;
    animation: flicker-accent 3.5s ease-in-out 1.2s infinite;
    pointer-events: none;
}

@keyframes flicker-accent {

    0%,
    100% {
        opacity: 0.08;
    }

    40% {
        opacity: 0.32;
    }

    55% {
        opacity: 0.12;
    }

    70% {
        opacity: 0.28;
    }
}

.contact-us .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-us .form-heading-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .form-eyebrow {
    font-size: 16px;
    color: #C45E4F;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.contact-us .form-main-heading {
    font-size: 44px;
    line-height: 1.1;
    color: #1e1e2e;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 0;
}

.contact-us .form-main-heading span {
    display: block;
}

.contact-us .form-note {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a4a;
    letter-spacing: 0.01em;
}

.contact-us .form-status-narrative {
    margin-top: 24px;
    padding: 24px;
    background: #F4E9EB;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-us .status-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us .status-label {
    font-size: 16px;
    color: #3a3a4a;
    letter-spacing: 0.01em;
}

.contact-us .status-bar-track {
    width: 100%;
    height: 6px;
    background: #D9A8B9;
    border-radius: 4px;
    overflow: hidden;
}

.contact-us .status-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: #C45E4F;
    animation: bar-grow 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: left;
}

.contact-us .status-bar-fill.speed {
    width: 88%;
    animation-delay: 0.2s;
}

.contact-us .status-bar-fill.accuracy {
    width: 94%;
    animation-delay: 0.5s;
}

.contact-us .status-bar-fill.uptime {
    width: 99%;
    animation-delay: 0.8s;
}

@keyframes bar-grow {
    from {
        width: 0;
    }
}

.contact-us .status-value {
    font-size: 16px;
    color: #C45E4F;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-us .form-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us .field-label {
    font-size: 16px;
    color: #1e1e2e;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-us .field-input {
    padding: 16px;
    border: 1px solid #D9A8B9;
    border-radius: 6px;
    font-size: 19px;
    color: #1e1e2e;
    background: #fff;
    box-shadow: inset 0 2px 3px rgba(196, 94, 79, 0.04), inset 0 -1px 2px rgba(196, 94, 79, 0.07);
    outline: none;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.01em;
    width: 100%;
}

.contact-us .field-input::placeholder {
    font-style: italic;
    opacity: 0.52;
    color: #3a3a4a;
}

.contact-us .field-input:focus {
    border-color: #C45E4F;
    box-shadow: 0 0 0 3px rgba(196, 94, 79, 0.12), inset 0 2px 3px rgba(196, 94, 79, 0.04);
}

.contact-us .channel-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us .channel-label {
    font-size: 16px;
    color: #1e1e2e;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-us .channel-options {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-us .channel-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.contact-us .channel-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D9A8B9;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
}

.contact-us .channel-radio:checked {
    border-color: #C45E4F;
    background: #C45E4F;
}

.contact-us .channel-radio:focus {
    box-shadow: 0 0 0 3px rgba(196, 94, 79, 0.18);
    outline: none;
}

.contact-us .channel-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .channel-radio:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.contact-us .channel-text {
    font-size: 16px;
    color: #3a3a4a;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.contact-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.contact-us .privacy-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D9A8B9;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .privacy-checkbox:checked {
    border-color: #C45E4F;
    background: #C45E4F;
}

.contact-us .privacy-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(196, 94, 79, 0.18);
    outline: none;
}

.contact-us .privacy-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .privacy-checkbox:checked::after {
    transform: rotate(45deg) scale(1);
}

.contact-us .privacy-text {
    font-size: 16px;
    color: #3a3a4a;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.contact-us .privacy-text a {
    color: #C45E4F;
    text-decoration: underline;
}

.contact-us .submit-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #C45E4F;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-us .submit-button:hover {
    background: #a8463a;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    transform: translateY(-2px);
}

.contact-us .submit-button:active {
    transform: translateY(0);
}

.contact-us .submit-button:focus {
    outline: 3px solid rgba(196, 94, 79, 0.4);
    outline-offset: 2px;
}

.contact-us .button-arrow {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    transform: translateX(-4px);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-us .button-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.contact-us .submit-button:hover .button-arrow {
    transform: translateX(4px);
}

.contact-us .wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #F4E9EB;
}

.contact-us .wave-divider svg {
    display: block;
    width: 100%;
}

@media (max-width: 900px) {
    .contact-us .reach-panel {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .contact-us .reach-heading {
        font-size: 44px;
    }

    .contact-us .form-area {
        padding: 40px 24px;
    }

    .contact-us .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .contact-us .reach-panel {
        padding: 24px 16px;
        gap: 24px;
    }

    .contact-us .reach-heading {
        font-size: 44px;
    }

    .contact-us .form-area {
        padding: 24px 16px;
    }

    .contact-us .form-main-heading {
        font-size: 24px;
    }

    .contact-us .channel-options {
        flex-direction: column;
    }
}

.about-us-page {
    overflow-x: clip;
}

.about-us-page .slide-in {
    opacity: 0;
    transform: translateX(60px);
    animation: slideFromRight 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.about-us-page .slide-in:nth-child(1) {
    animation-delay: 0.05s;
}

.about-us-page .slide-in:nth-child(2) {
    animation-delay: 0.13s;
}

.about-us-page .slide-in:nth-child(3) {
    animation-delay: 0.21s;
}

.about-us-page .slide-in:nth-child(4) {
    animation-delay: 0.29s;
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-us-page .reading-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.about-us-page .reading-line-bar {
    width: 40px;
    height: 2px;
    background: #C45E4F;
}

.about-us-page .reading-line-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D9A8B9;
}

.about-us-page .title-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 72px 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: center;
}

.about-us-page .title-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.72;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .title-image-card:hover {
    opacity: 0.9;
}

.about-us-page .title-image-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-us-page .title-counter-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.about-us-page .counter-number {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #C45E4F;
    font-weight: 800;
}

.about-us-page .counter-label {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #3a2e2c;
}

.about-us-page .title-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1614;
    margin-bottom: 24px;
}

.about-us-page .title-heading .outlined-word {
    -webkit-text-stroke: 1.5px #C45E4F;
    color: transparent;
}

.about-us-page .title-heading span {
    display: block;
}

.about-us-page .title-lead {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
    max-width: 480px;
}

.about-us-page .direction-arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.about-us-page .arrow-line {
    width: 48px;
    height: 1px;
    background: #D9A8B9;
}

.about-us-page .arrow-tip {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #D9A8B9;
}

.about-us-page .divider-edges {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-us-page .divider-edges .edge-line {
    width: 120px;
    height: 1px;
    background: #D9A8B9;
}

.about-us-page .story-area {
    background: #F4E9EB;
    padding: 72px 0;
    position: relative;
}

.about-us-page .story-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.about-us-page .story-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-us-page .story-left {
    grid-column: 1 / 2;
}

.about-us-page .story-center {
    grid-column: 2 / 3;
}

.about-us-page .story-right {
    grid-column: 3 / 4;
}

.about-us-page .story-label {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #C45E4F;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-us-page .story-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1614;
    margin-bottom: 24px;
}

.about-us-page .story-heading span {
    display: block;
}

.about-us-page .story-heading .accent-word {
    color: #C45E4F;
    font-weight: 800;
}

.about-us-page .story-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
    margin-bottom: 16px;
}

.about-us-page .story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transition: box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .story-image:hover {
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    transform: translateY(-4px);
}

.about-us-page .story-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-us-page .story-stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    margin-top: 24px;
}

.about-us-page .stat-number {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #C45E4F;
    font-weight: 800;
}

.about-us-page .stat-description {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #3a2e2c;
    margin-top: 8px;
}

.about-us-page .timeline-area {
    background: #fff;
    padding: 72px 0;
}

.about-us-page .timeline-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-us-page .timeline-header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.about-us-page .timeline-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1614;
}

.about-us-page .timeline-heading span {
    display: block;
}

.about-us-page .timeline-heading .outlined-word {
    -webkit-text-stroke: 1.5px #C45E4F;
    color: transparent;
}

.about-us-page .timeline-subtext {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a4a47;
    max-width: 340px;
    padding-bottom: 8px;
}

.about-us-page .timeline-track {
    position: relative;
    padding: 0;
}

.about-us-page .timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #D9A8B9 0%, #C45E4F 60%, #D9A8B9 100%);
    transform: translateX(-50%);
}

.about-us-page .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.about-us-page .timeline-item:last-child {
    margin-bottom: 0;
}

.about-us-page .timeline-item-left {
    text-align: right;
    padding-right: 40px;
}

.about-us-page .timeline-item-right {
    padding-left: 40px;
}

.about-us-page .timeline-item.reversed .timeline-item-left {
    order: 2;
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
}

.about-us-page .timeline-item.reversed .timeline-item-right {
    order: 1;
    text-align: right;
    padding-left: 0;
    padding-right: 40px;
}

.about-us-page .timeline-year {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #C45E4F;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-us-page .timeline-event-title {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #1e1614;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-us-page .timeline-event-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
}

.about-us-page .timeline-dot {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C45E4F;
    border: 3px solid #fff;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transform: translateX(-50%);
}

.about-us-page .timeline-item-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.about-us-page .timeline-item-wrapper:last-child {
    margin-bottom: 0;
}

.about-us-page .team-area {
    background: #1e1614;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.about-us-page .circles-decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    pointer-events: none;
}

.about-us-page .circles-decoration circle {
    fill: none;
    stroke: #D9A8B9;
    stroke-width: 1;
    opacity: 0.08;
}

.about-us-page .team-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-us-page .team-heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.about-us-page .team-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #F4E9EB;
}

.about-us-page .team-heading span {
    display: block;
}

.about-us-page .team-heading .accent-word {
    color: #D9A8B9;
}

.about-us-page .team-description {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #b0908a;
    max-width: 400px;
    padding-top: 8px;
}

.about-us-page .team-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 24px;
    align-items: start;
}

.about-us-page .team-member-card {
    background: #2a1f1c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.about-us-page .team-member-card.featured {
    background: #C45E4F;
}

.about-us-page .member-portrait {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .member-info {
    padding: 24px;
}

.about-us-page .member-name {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #F4E9EB;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-us-page .member-role {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #D9A8B9;
    margin-bottom: 8px;
}

.about-us-page .team-member-card.featured .member-role {
    color: #F4E9EB;
    opacity: 0.8;
}

.about-us-page .member-bio {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #b0908a;
}

.about-us-page .team-member-card.featured .member-bio {
    color: #F4E9EB;
    opacity: 0.85;
}

.about-us-page .no-portrait-card {
    background: #2a1f1c;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .no-portrait-card:hover {
    transform: translateY(-4px);
}

.about-us-page .avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C45E4F 0%, #D9A8B9 100%);
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.about-us-page .avatar-initials {
    font-size: 19px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-us-page .approach-area {
    background: #fff;
    padding: 72px 0;
    position: relative;
}

.about-us-page .approach-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-us-page .approach-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: end;
}

.about-us-page .approach-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1614;
}

.about-us-page .approach-heading span {
    display: block;
}

.about-us-page .approach-heading .accent-word {
    color: #C45E4F;
    font-weight: 800;
}

.about-us-page .approach-lead {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
}

.about-us-page .approach-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.about-us-page .approach-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
    margin-bottom: 16px;
}

.about-us-page .approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-page .approach-list li {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2c;
    padding: 8px 0 8px 16px;
    border-left: 2px solid #D9A8B9;
    margin-bottom: 8px;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .approach-list li:hover {
    border-left-color: #C45E4F;
}

.about-us-page .approach-list li .accent-word {
    color: #C45E4F;
    font-weight: 700;
}

.about-us-page .approach-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-us-page .approach-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-us-page .approach-image-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
}

.about-us-page .approach-image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-us-page .link-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #C45E4F;
    color: #fff;
    border-radius: 6px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.about-us-page .link-button:hover {
    background: #a84b3e;
    transform: translateX(4px);
}

.about-us-page .link-button-outline {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #C45E4F;
    border-radius: 6px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #C45E4F;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.about-us-page .link-button-outline:hover {
    background: #C45E4F;
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .about-us-page .title-area {
        grid-template-columns: 1fr;
        padding: 40px 24px 72px 24px;
    }

    .about-us-page .story-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .about-us-page .story-left,
    .about-us-page .story-center,
    .about-us-page .story-right {
        grid-column: 1 / 2;
    }

    .about-us-page .timeline-inner {
        padding: 0 24px;
    }

    .about-us-page .timeline-track::before {
        left: 16px;
    }

    .about-us-page .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-us-page .timeline-item-left {
        text-align: left;
        padding-right: 0;
        padding-left: 40px;
    }

    .about-us-page .timeline-item-right {
        padding-left: 40px;
    }

    .about-us-page .timeline-item.reversed .timeline-item-left {
        order: 0;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }

    .about-us-page .timeline-item.reversed .timeline-item-right {
        order: 0;
        text-align: left;
        padding-right: 0;
        padding-left: 40px;
    }

    .about-us-page .timeline-dot {
        left: 16px;
    }

    .about-us-page .team-inner {
        padding: 0 24px;
    }

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

    .about-us-page .team-heading-row {
        flex-direction: column;
        gap: 16px;
    }

    .about-us-page .approach-inner {
        padding: 0 24px;
    }

    .about-us-page .approach-top {
        grid-template-columns: 1fr;
    }

    .about-us-page .approach-columns {
        grid-template-columns: 1fr;
    }

    .about-us-page .timeline-header {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .about-us-page .counter-number {
        font-size: 44px;
    }

    .about-us-page .title-heading {
        font-size: 44px;
    }

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

    .about-us-page .approach-images {
        grid-template-columns: 1fr;
    }

    .about-us-page .divider-edges {
        padding: 0 24px;
    }

    .about-us-page .story-area {
        padding: 40px 0;
    }

    .about-us-page .timeline-area {
        padding: 40px 0;
    }

    .about-us-page .team-area {
        padding: 40px 0;
    }

    .about-us-page .approach-area {
        padding: 40px 0;
    }
}

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

.services .page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

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

.services .drop-1 {
    animation: dropIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.services .drop-2 {
    animation: dropIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

.services .drop-3 {
    animation: dropIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.16s both;
}

.services .pitch {
    background: #1b1412;
    padding: 72px 0 96px;
    position: relative;
}

.services .pitch-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.services .pitch-dots::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(196, 94, 79, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
}

.services .pitch-dots::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #1b1412 0%, transparent 100%);
}

.services .pitch-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #D9A8B9;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.services .pitch-heading {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #F4E9EB;
    margin: 0 0 40px;
    max-width: 700px;
}

.services .pitch-heading strong {
    color: #C45E4F;
    font-weight: 800;
}

.services .pitch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F4E9EB;
    font-size: 19px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 94, 79, 0.5);
    padding-bottom: 4px;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.services .pitch-link .link-arrow {
    display: inline-block;
    transform: translateX(-8px);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .pitch-link .link-text {
    display: inline-block;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .pitch-link:hover .link-arrow {
    transform: translateX(0);
    opacity: 1;
}

.services .pitch-link:hover .link-text {
    transform: translateX(8px);
}

.services .pitch-link:hover {
    color: #C45E4F;
    border-color: #C45E4F;
}

.services .service-grid-area {
    background: #F4E9EB;
    padding: 72px 0;
}

.services .grid-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C45E4F;
    margin-bottom: 40px;
    display: block;
}

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

@media (max-width: 900px) {
    .services .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services .service-cards {
        grid-template-columns: 1fr;
    }

    .services .pitch-heading {
        font-size: 44px;
    }

    .services .page-container {
        padding: 0 16px;
    }
}

.services .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px 32px;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: #C45E4F;
    border-radius: 2px 0 0 0;
}

.services .service-card:hover {
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    transform: translateY(-4px);
}

.services .card-bracket {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(196, 94, 79, 0.3);
    border-right: 2px solid rgba(196, 94, 79, 0.3);
    border-radius: 0 4px 0 0;
}

.services .card-number {
    font-size: 44px;
    line-height: 1.1;
    color: #F4E9EB;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    display: block;
}

.services .card-name {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #1b1412;
    font-weight: 700;
    margin: 0 0 16px;
}

.services .card-desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a2e2b;
    margin: 0;
}

.services .process-area {
    background: #fff;
    padding: 72px 0;
}

.services .process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 900px) {
    .services .process-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services .pitch {
        padding: 40px 0 72px;
    }

    .services .service-grid-area {
        padding: 40px 0;
    }

    .services .process-area {
        padding: 40px 0;
    }
}

.services .process-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.services .process-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), brightness 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .process-image-wrap:hover img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.services .process-steps {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.services .process-steps li {
    border-left: 2px solid #D9A8B9;
    padding: 0 0 24px 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #3a2e2b;
    letter-spacing: 0.01em;
}

.services .process-steps li:last-child {
    padding-bottom: 0;
}

.services .process-steps li::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C45E4F;
}

.services .step-title {
    display: block;
    font-weight: 700;
    color: #1b1412;
    margin-bottom: 8px;
    font-size: 16px;
}

.services .process-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1b1412;
    margin: 0 0 16px;
}

.services .process-heading strong {
    color: #C45E4F;
}

.services .process-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2e2b;
    margin: 0 0 24px;
    letter-spacing: 0.01em;
}

.services .testimonials-area {
    background: linear-gradient(170deg, #2e1c18 0%, #F4E9EB 100%);
    padding: 72px 0;
    position: relative;
}

.services .testimonials-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.services .testimonials-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D9A8B9;
    margin-bottom: 40px;
    display: block;
}

.services .testimonials-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #F4E9EB;
    margin: 0 0 40px;
    max-width: 600px;
}

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

@media (max-width: 900px) {
    .services .testimonial-list {
        grid-template-columns: 1fr 1fr;
    }

    .services .testimonials-area {
        padding: 40px 0;
    }
}

@media (max-width: 600px) {
    .services .testimonial-list {
        grid-template-columns: 1fr;
    }
}

.services .testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    position: relative;
}

.services .testimonial-card .corner-bracket-tl {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 14px;
    height: 14px;
    border-top: 2px solid #C45E4F;
    border-left: 2px solid #C45E4F;
    border-radius: 4px 0 0 0;
}

.services .testimonial-card .corner-bracket-br {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid #D9A8B9;
    border-right: 2px solid #D9A8B9;
    border-radius: 0 0 4px 0;
}

.services .testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #2a1e1b;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
}

.services .testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.services .author-portrait {
    width: 48px;
    height: 60px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.services .author-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.services .author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1b1412;
    letter-spacing: 0.01em;
    display: block;
}

.services .author-role {
    font-size: 16px;
    color: #6a4f48;
    letter-spacing: 0.01em;
    display: block;
    margin-top: 4px;
}

.services .detail-area {
    background: #fff;
    padding: 72px 0;
}

.services .detail-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .services .detail-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services .detail-area {
        padding: 40px 0;
    }
}

.services .detail-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1b1412;
    margin: 0 0 24px;
}

.services .detail-heading strong {
    color: #C45E4F;
}

.services .detail-body {
    columns: 2;
    column-gap: 40px;
}

@media (max-width: 600px) {
    .services .detail-body {
        columns: 1;
    }
}

.services .detail-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2e2b;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
    break-inside: avoid;
}

.services .sidebar-panel {
    background: #1b1412;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    position: relative;
}

.services .sidebar-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgba(196, 94, 79, 0.4);
    border-right: 2px solid rgba(196, 94, 79, 0.4);
    border-radius: 0 12px 0 0;
}

.services .sidebar-heading {
    font-size: 19px;
    line-height: 1.4;
    color: #F4E9EB;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
}

.services .sidebar-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services .sidebar-items li {
    border-left: 2px solid #C45E4F;
    padding: 0 0 16px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #D9A8B9;
    letter-spacing: 0.01em;
}

.services .sidebar-items li:last-child {
    padding-bottom: 0;
}

.services .sidebar-items li strong {
    color: #F4E9EB;
    display: block;
    margin-bottom: 4px;
}

.services .detail-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-top: 40px;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.services .detail-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .detail-image-wrap:hover img {
    transform: scale(1.04);
}

.services [tabindex]:focus .tooltip-target,
.services .tooltip-target:focus {
    outline: 2px solid #C45E4F;
    outline-offset: 4px;
}

.services .tooltip-wrap {
    position: relative;
    display: inline-block;
}

.services .tooltip-wrap .tooltip-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1b1412;
    color: #F4E9EB;
    font-size: 16px;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.01em;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.services .tooltip-wrap:focus-within .tooltip-bubble {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

.press .stripe-background {
    position: relative;
    overflow: hidden;
}

.press .stripe-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(127deg,
            transparent,
            transparent 40px,
            rgba(196, 94, 79, 0.04) 40px,
            rgba(196, 94, 79, 0.04) 41px);
    animation: stripe-drift 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

    to {
        background-position: 200px 200px;
    }
}

.press .press-page-top {
    background: #F4E9EB;
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.press .press-page-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(196, 94, 79, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 10%, rgba(217, 168, 185, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.press .page-eyebrow {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C45E4F;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.press .page-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #C45E4F;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
}

.press .page-main-heading {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a0f0d;
    font-weight: 900;
    margin: 0 auto 24px;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.press .page-main-heading span {
    color: #C45E4F;
    font-weight: 900;
}

.press .page-lead {
    font-size: 19px;
    line-height: 1.6;
    color: #3a2825;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.press .image-channel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    z-index: 1;
}

.press .image-channel-wrapper img {
    width: 520px;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    filter: saturate(1.15) contrast(1.08);
}

.press .image-channel-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(196, 94, 79, 0.3);
    border-radius: 20px;
    pointer-events: none;
}

.press .shape-left {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(196, 94, 79, 0.08);
    pointer-events: none;
}

.press .shape-right {
    position: absolute;
    right: -30px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(217, 168, 185, 0.2);
    transform: rotate(18deg);
    pointer-events: none;
}

.press .curve-divider {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.press .curve-divider svg {
    display: block;
    width: 100%;
}

.press .media-kit-area {
    background: #fff;
    padding: 72px 40px;
    position: relative;
}

.press .media-kit-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.press .media-kit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.press .kit-center-panel {
    background: #F4E9EB;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    position: relative;
    overflow: hidden;
}

.press .kit-center-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C45E4F, #D9A8B9);
    border-radius: 20px 20px 0 0;
}

.press .kit-center-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a0f0d;
    font-weight: 900;
    margin-bottom: 16px;
}

.press .kit-center-heading span {
    color: #C45E4F;
}

.press .kit-center-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2825;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.press .kit-stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 24px;
}

.press .kit-stat {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.press .kit-stat-number {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 900;
    color: #C45E4F;
    letter-spacing: 0.01em;
}

.press .kit-stat-label {
    font-size: 16px;
    line-height: 1.4;
    color: #3a2825;
    letter-spacing: 0.01em;
}

.press .kit-side-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.press .kit-fact-item {
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
    position: relative;
    border-top: 2px solid #F4E9EB;
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.press .kit-fact-item:hover {
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
}

.press .kit-fact-label {
    font-size: 16px;
    line-height: 1.4;
    color: #C45E4F;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.press .kit-fact-value {
    font-size: 19px;
    line-height: 1.4;
    color: #1a0f0d;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.press .kit-fact-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3f3a;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.press .dashed-connector {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 0;
    border-top: 2px dashed rgba(196, 94, 79, 0.25);
    pointer-events: none;
}

.press .curve-divider-2 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.press .curve-divider-2 svg {
    display: block;
    width: 100%;
}

.press .mentions-area {
    background: #2a1510;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.press .mentions-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 0;
}

.press .fish-scale-texture {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 0% 0%, transparent 60%, rgba(196, 94, 79, 0.6) 60.5%, transparent 61%),
        radial-gradient(circle at 50% 0%, transparent 60%, rgba(196, 94, 79, 0.6) 60.5%, transparent 61%),
        radial-gradient(circle at 100% 0%, transparent 60%, rgba(196, 94, 79, 0.6) 60.5%, transparent 61%),
        radial-gradient(circle at 25% 50%, transparent 60%, rgba(196, 94, 79, 0.6) 60.5%, transparent 61%),
        radial-gradient(circle at 75% 50%, transparent 60%, rgba(196, 94, 79, 0.6) 60.5%, transparent 61%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.press .mentions-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.press .mentions-top {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 40px;
}

.press .mentions-heading-block {
    flex: 1;
}

.press .mentions-heading {
    font-size: 44px;
    line-height: 1.1;
    color: #F4E9EB;
    font-weight: 900;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.press .mentions-heading span {
    color: #D9A8B9;
}

.press .mentions-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244, 233, 235, 0.75);
    letter-spacing: 0.01em;
    max-width: 420px;
}

.press .contact-press-box {
    background: rgba(196, 94, 79, 0.15);
    border: 1px solid rgba(196, 94, 79, 0.3);
    border-radius: 12px;
    padding: 24px;
    min-width: 280px;
}

.press .contact-press-label {
    font-size: 16px;
    line-height: 1.4;
    color: #D9A8B9;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.press .contact-press-email {
    font-size: 19px;
    line-height: 1.4;
    color: #F4E9EB;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.press .contact-press-email:hover {
    color: #D9A8B9;
}

.press .contact-press-phone {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244, 233, 235, 0.7);
    letter-spacing: 0.01em;
    text-decoration: none;
    display: block;
    transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.press .contact-press-phone:hover {
    color: #F4E9EB;
}

.press .mentions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.press .mention-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    background: rgba(244, 233, 235, 0.05);
    border-radius: 12px;
    padding: 24px;
    border-top: 1px solid rgba(196, 94, 79, 0.2);
    transition: background 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.press .mention-item:hover {
    background: rgba(244, 233, 235, 0.09);
}

.press .mention-index {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(196, 94, 79, 0.3);
    letter-spacing: 0.01em;
    min-width: 56px;
}

.press .mention-body {
    flex: 1;
}

.press .mention-source {
    font-size: 16px;
    line-height: 1.4;
    color: #D9A8B9;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.press .mention-quote {
    font-size: 19px;
    line-height: 1.6;
    color: #F4E9EB;
    letter-spacing: 0.01em;
    font-style: italic;
}

.press .mention-context {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244, 233, 235, 0.6);
    letter-spacing: 0.01em;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .press .page-main-heading {
        font-size: 44px;
    }

    .press .image-channel-wrapper img {
        width: 100%;
        max-width: 420px;
        height: auto;
        aspect-ratio: 4/3;
    }

    .press .media-kit-grid {
        grid-template-columns: 1fr;
    }

    .press .dashed-connector {
        display: none;
    }

    .press .mentions-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .press .contact-press-box {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .press .press-page-top {
        padding: 40px 16px;
    }

    .press .page-main-heading {
        font-size: 44px;
    }

    .press .media-kit-area {
        padding: 40px 16px;
    }

    .press .mentions-area {
        padding: 40px 16px;
    }

    .press .kit-stat-row {
        flex-direction: column;
    }

    .press .mention-item {
        flex-direction: column;
        gap: 8px;
    }

    .press .mention-index {
        font-size: 24px;
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background-color: #fff;
}

.success-page .confirmation-wrapper {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success-page .confirmation-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-page .confirmation-icon svg {
    width: 64px;
    height: 64px;
}

.success-page .confirmation-heading {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin-bottom: 24px;
}

.success-page .confirmation-heading span {
    color: #C45E4F;
    font-weight: 700;
}

.success-page .confirmation-text {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.success-page .confirmation-note {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #5a5a5a;
    margin-bottom: 40px;
    padding: 16px 24px;
    background-color: #F4E9EB;
    border-radius: 6px;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.success-page .confirmation-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-page .action-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: #C45E4F;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid #C45E4F;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-page .action-primary:hover {
    background-color: #a84d3f;
    border-color: #a84d3f;
    transform: translateY(-2px);
}

.success-page .action-primary:focus {
    outline: 3px solid #D9A8B9;
    outline-offset: 3px;
}

.success-page .action-primary:active {
    transform: translateY(0);
}

.success-page .action-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: transparent;
    color: #C45E4F;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid #C45E4F;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success-page .action-secondary:hover {
    background-color: #F4E9EB;
    color: #a84d3f;
}

.success-page .action-secondary:focus {
    outline: 3px solid #D9A8B9;
    outline-offset: 3px;
}

.success-page .divider-line {
    width: 48px;
    height: 2px;
    background-color: #D9A8B9;
    margin: 40px auto;
    border-radius: 2px;
}

.success-page .contact-hint {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #5a5a5a;
}

.success-page .contact-hint a {
    color: #C45E4F;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.success-page .contact-hint a:hover {
    color: #a84d3f;
}

@media (max-width: 600px) {
    .success-page {
        padding: 40px 16px;
    }

    .success-page .confirmation-heading {
        font-size: 24px;
    }

    .success-page .confirmation-text {
        font-size: 16px;
    }

    .success-page .confirmation-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .success-page .action-primary,
    .success-page .action-secondary {
        justify-content: center;
        padding: 16px 24px;
    }
}

.not-found-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background-color: #fff;
}

.not-found-page .error-code {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #C45E4F;
    font-weight: 800;
    margin-bottom: 8px;
}

.not-found-page .error-heading {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-weight: 600;
}

.not-found-page .error-description {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3d3d3d;
    max-width: 480px;
    text-align: center;
    margin-bottom: 40px;
}

.not-found-page .error-divider {
    width: 48px;
    height: 3px;
    background-color: #D9A8B9;
    border-radius: 2px;
    margin-bottom: 40px;
}

.not-found-page .error-navigation {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.not-found-page .primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: #C45E4F;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 600;
    border: 2px solid #C45E4F;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 22px 0 rgba(196, 94, 79, 0.11);
    transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.not-found-page .primary-action:hover {
    background-color: #a84d40;
    border-color: #a84d40;
    box-shadow: 0 9px 60px 0 rgba(196, 94, 79, 0.12);
    transform: translateY(-2px);
    color: #fff;
}

.not-found-page .primary-action:focus {
    outline: 3px solid #D9A8B9;
    outline-offset: 3px;
}

.not-found-page .primary-action:active {
    transform: translateY(0);
}

.not-found-page .secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: transparent;
    color: #C45E4F;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 600;
    border: 2px solid #D9A8B9;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.not-found-page .secondary-action:hover {
    border-color: #C45E4F;
    background-color: #F4E9EB;
    transform: translateY(-2px);
    color: #C45E4F;
}

.not-found-page .secondary-action:focus {
    outline: 3px solid #D9A8B9;
    outline-offset: 3px;
}

.not-found-page .secondary-action:active {
    transform: translateY(0);
}

.not-found-page .error-context {
    margin-top: 40px;
    padding: 24px;
    background-color: #F4E9EB;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 3px 4px 0 rgba(196, 94, 79, 0.06);
}

.not-found-page .error-context-label {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #2a2a2a;
    font-weight: 600;
    margin-bottom: 8px;
}

.not-found-page .error-context-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.not-found-page .error-context-links li {
    padding: 8px 0 8px 16px;
    border-left: none;
    position: relative;
}

.not-found-page .error-context-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background-color: #C45E4F;
    border-radius: 2px;
}

.not-found-page .error-context-links li a {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #C45E4F;
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.not-found-page .error-context-links li a:hover {
    color: #a84d40;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .not-found-page {
        padding: 40px 16px;
    }

    .not-found-page .error-code {
        font-size: 44px;
    }

    .not-found-page .error-heading {
        font-size: 19px;
        text-align: center;
    }

    .not-found-page .error-navigation {
        flex-direction: column;
        align-items: stretch;
    }

    .not-found-page .primary-action,
    .not-found-page .secondary-action {
        justify-content: center;
        padding: 16px 24px;
    }
}