.csh-contact-page {
    --csh-contact-gold: #b28a3b;
    --csh-contact-gold-light: #e7c474;
    --csh-contact-gold-soft: #f8f2e6;
    --csh-contact-black: #080808;
    --csh-contact-dark: #151515;
    --csh-contact-text: #252525;
    --csh-contact-muted: #6c6c6c;
    --csh-contact-border: #e7dfd1;
    --csh-contact-surface: #ffffff;
    --csh-contact-background: #f7f6f3;
    --csh-contact-danger: #a83434;
    --csh-contact-success: #26714d;

    width: min(1480px, calc(100% - 48px));
    max-width: 1480px;
    margin: 28px auto 64px;
    color: var(--csh-contact-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

.csh-contact-page,
.csh-contact-page *,
.csh-contact-page *::before,
.csh-contact-page *::after {
    box-sizing: border-box;
}

.csh-contact-page a {
    color: inherit;
}

.csh-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: clamp(32px, 5vw, 88px);
    min-height: 520px;
    overflow: hidden;
    padding: clamp(42px, 6vw, 88px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(178, 138, 59, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 110%,
            rgba(178, 138, 59, 0.15),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0c0c0c 48%,
            #171717 100%
        );
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.csh-contact-hero::before,
.csh-contact-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.csh-contact-hero::before {
    right: -120px;
    bottom: -190px;
    width: 460px;
    height: 460px;
}

.csh-contact-hero::after {
    right: 180px;
    bottom: -190px;
    width: 300px;
    height: 300px;
}

.csh-contact-hero__content,
.csh-contact-hero__panel {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.csh-contact-eyebrow,
.csh-contact-section-label {
    margin: 0 0 12px;
    color: var(--csh-contact-gold-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.csh-contact-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.csh-contact-hero h1 span {
    display: block;
    margin-top: 10px;
    color: var(--csh-contact-gold-light);
}

.csh-contact-hero__lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.75;
}

.csh-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.csh-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.csh-contact-button:hover {
    transform: translateY(-2px);
}

.csh-contact-button.is-primary {
    background: var(--csh-contact-gold-light);
    color: #111111;
}

.csh-contact-button.is-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.csh-contact-hero__panel {
    align-self: center;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
}

.csh-contact-hero__panel-label {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid rgba(231, 196, 116, 0.4);
    border-radius: 999px;
    color: var(--csh-contact-gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.csh-contact-hero__panel > strong {
    display: block;
    margin: 22px 0 28px;
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1.25;
}

.csh-contact-hero__features {
    display: grid;
    gap: 17px;
}

.csh-contact-hero__features > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.csh-contact-hero__features span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(231, 196, 116, 0.13);
    color: var(--csh-contact-gold-light);
    font-size: 12px;
    font-weight: 900;
}

.csh-contact-hero__features p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.55;
}

.csh-contact-hero__features b {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 15px;
}

.csh-contact-channels {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1260px, calc(100% - 64px));
    margin: -42px auto 0;
}

.csh-contact-channel {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 23px;
    border: 1px solid var(--csh-contact-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(28, 23, 14, 0.09);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.csh-contact-channel:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 138, 59, 0.65);
}

.csh-contact-channel__number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: var(--csh-contact-gold-soft);
    color: var(--csh-contact-gold);
    font-size: 12px;
    font-weight: 900;
}

.csh-contact-channel > span:last-child {
    min-width: 0;
}

.csh-contact-channel small,
.csh-contact-channel strong,
.csh-contact-channel em {
    display: block;
}

.csh-contact-channel small {
    margin-bottom: 5px;
    color: var(--csh-contact-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.csh-contact-channel strong {
    overflow-wrap: anywhere;
    font-size: 16px;
}

.csh-contact-channel em {
    margin-top: 4px;
    color: var(--csh-contact-muted);
    font-size: 13px;
    font-style: normal;
}

.csh-contact-workspace {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: 28px;
    margin-top: 70px;
    align-items: start;
}

.csh-contact-sidebar {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.csh-contact-info-card,
.csh-contact-company-card,
.csh-contact-map-card,
.csh-contact-form-card {
    min-width: 0;
    border: 1px solid var(--csh-contact-border);
    border-radius: 26px;
    background: var(--csh-contact-surface);
    box-shadow: 0 18px 50px rgba(30, 24, 15, 0.06);
}

.csh-contact-info-card,
.csh-contact-company-card {
    padding: clamp(26px, 4vw, 42px);
}

.csh-contact-info-card .csh-contact-section-label,
.csh-contact-company-card .csh-contact-section-label,
.csh-contact-form-card .csh-contact-section-label,
.csh-contact-map-card .csh-contact-section-label,
.csh-contact-help .csh-contact-section-label {
    color: var(--csh-contact-gold);
}

.csh-contact-info-card h2,
.csh-contact-company-card h2,
.csh-contact-map-card h2,
.csh-contact-form-card h2,
.csh-contact-help h2 {
    margin: 0;
    color: var(--csh-contact-text);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.csh-contact-info-card > p:not(.csh-contact-section-label),
.csh-contact-map-card p,
.csh-contact-form-card__header > p:not(.csh-contact-section-label) {
    margin: 18px 0 0;
    color: var(--csh-contact-muted);
    font-size: 15px;
    line-height: 1.75;
}

.csh-contact-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.csh-contact-info-list > div {
    padding: 19px;
    border: 1px solid var(--csh-contact-border);
    border-radius: 18px;
    background: var(--csh-contact-background);
}

.csh-contact-info-list span {
    color: var(--csh-contact-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.csh-contact-info-list p {
    margin: 8px 0 0;
    color: var(--csh-contact-muted);
    font-size: 13px;
    line-height: 1.6;
}

.csh-contact-company-card {
    background:
        linear-gradient(
            145deg,
            #111111 0%,
            #1c1c1c 100%
        );
    color: #ffffff;
}

.csh-contact-company-card h2 {
    color: #ffffff;
}

.csh-contact-company-card dl {
    display: grid;
    gap: 0;
    margin: 26px 0 0;
}

.csh-contact-company-card dl > div {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.csh-contact-company-card dl > div:last-child {
    border-bottom: 0;
}

.csh-contact-company-card dt {
    color: rgba(255, 255, 255, 0.53);
    font-size: 13px;
}

.csh-contact-company-card dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 750;
}

.csh-contact-company-card a {
    color: #ffffff;
    text-decoration: none;
}

.csh-contact-map-card {
    overflow: hidden;
}

.csh-contact-map-card__copy {
    padding: 30px;
}

.csh-contact-map-card iframe {
    display: block;
    width: 100%;
    height: 270px;
    border: 0;
    filter: grayscale(0.35) contrast(0.95);
}

.csh-contact-form-card {
    position: sticky;
    top: 22px;
    padding: clamp(28px, 4.2vw, 52px);
}

.csh-contact-form-card__header {
    margin-bottom: 28px;
}

.csh-contact-alert {
    margin-bottom: 22px;
    padding: 18px 20px;
    border: 1px solid;
    border-radius: 18px;
}

.csh-contact-alert strong,
.csh-contact-alert p {
    display: block;
    margin: 0;
}

.csh-contact-alert p,
.csh-contact-alert ul {
    margin: 7px 0 0;
}

.csh-contact-alert ul {
    padding-left: 20px;
}

.csh-contact-alert.is-success {
    border-color: rgba(38, 113, 77, 0.28);
    background: rgba(38, 113, 77, 0.08);
    color: var(--csh-contact-success);
}

.csh-contact-alert.is-error {
    border-color: rgba(168, 52, 52, 0.25);
    background: rgba(168, 52, 52, 0.07);
    color: var(--csh-contact-danger);
}

.csh-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
}

.csh-contact-form label {
    display: block;
    min-width: 0;
    margin: 0;
}

.csh-contact-form label > span:first-child {
    display: block;
    margin-bottom: 8px;
    color: var(--csh-contact-text);
    font-size: 13px;
    font-weight: 800;
}

.csh-contact-form input,
.csh-contact-form select,
.csh-contact-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 1px solid #dad4c9;
    border-radius: 14px;
    background: #fbfaf8;
    color: var(--csh-contact-text);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.csh-contact-form input,
.csh-contact-form select {
    min-height: 54px;
    padding: 0 16px;
}

.csh-contact-form textarea {
    min-height: 168px;
    padding: 15px 16px;
    line-height: 1.55;
    resize: vertical;
}

.csh-contact-form input:focus,
.csh-contact-form select:focus,
.csh-contact-form textarea:focus {
    border-color: var(--csh-contact-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(178, 138, 59, 0.12);
}

.csh-contact-form__wide,
.csh-contact-consent,
.csh-contact-submit {
    grid-column: 1 / -1;
}

.csh-contact-form__wide small {
    display: block;
    margin-top: 7px;
    color: var(--csh-contact-muted);
    font-size: 12px;
}

.csh-contact-consent {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 17px;
    border: 1px solid var(--csh-contact-border);
    border-radius: 15px;
    background: var(--csh-contact-background);
    color: var(--csh-contact-muted);
    font-size: 13px;
    line-height: 1.6;
}

.csh-contact-consent input {
    width: 18px;
    height: 18px;
    min-height: 0;
    margin-top: 2px;
    accent-color: var(--csh-contact-gold);
}

.csh-contact-consent span {
    margin: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: 500 !important;
}

.csh-contact-consent a {
    color: var(--csh-contact-gold);
    font-weight: 750;
}

.csh-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #c59a45 0%,
            #9b742d 100%
        );
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(178, 138, 59, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.csh-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(178, 138, 59, 0.3);
}

.csh-contact-submit:focus-visible {
    outline: 3px solid rgba(178, 138, 59, 0.28);
    outline-offset: 3px;
}

.csh-contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.csh-contact-form-card__security {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.csh-contact-form-card__security span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--csh-contact-gold-soft);
    color: #7c622e;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.csh-contact-help {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 34px;
    align-items: center;
    margin-top: 28px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--csh-contact-border);
    border-radius: 28px;
    background: var(--csh-contact-gold-soft);
}

.csh-contact-help__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.csh-contact-help__links a {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 17px;
    border: 1px solid rgba(178, 138, 59, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.csh-contact-help__links a:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.csh-contact-help__links span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: #ffffff;
    color: var(--csh-contact-gold);
    font-size: 11px;
    font-weight: 900;
}

.csh-contact-help__links strong {
    font-size: 14px;
}

@media (max-width: 1120px) {
    .csh-contact-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .csh-contact-hero__panel {
        max-width: 720px;
    }

    .csh-contact-channels {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .csh-contact-workspace {
        grid-template-columns: 1fr;
    }

    .csh-contact-form-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .csh-contact-page {
        width: min(100% - 24px, 1480px);
        margin-top: 14px;
        margin-bottom: 36px;
    }

    .csh-contact-hero {
        gap: 30px;
        padding: 34px 22px;
        border-radius: 22px;
    }

    .csh-contact-hero h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .csh-contact-hero__lead {
        font-size: 16px;
    }

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

    .csh-contact-button {
        width: 100%;
    }

    .csh-contact-hero__panel {
        padding: 22px;
        border-radius: 20px;
    }

    .csh-contact-channels {
        width: calc(100% - 20px);
        margin-top: -24px;
    }

    .csh-contact-channel {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
        border-radius: 18px;
    }

    .csh-contact-channel__number {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .csh-contact-workspace {
        gap: 18px;
        margin-top: 42px;
    }

    .csh-contact-info-card,
    .csh-contact-company-card,
    .csh-contact-form-card {
        padding: 24px 19px;
        border-radius: 21px;
    }

    .csh-contact-info-list {
        grid-template-columns: 1fr;
    }

    .csh-contact-company-card dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .csh-contact-map-card {
        border-radius: 21px;
    }

    .csh-contact-map-card__copy {
        padding: 24px 19px;
    }

    .csh-contact-map-card iframe {
        height: 230px;
    }

    .csh-contact-form {
        grid-template-columns: 1fr;
    }

    .csh-contact-form > * {
        grid-column: 1 / -1;
    }

    .csh-contact-help {
        grid-template-columns: 1fr;
        padding: 26px 19px;
        border-radius: 21px;
    }

    .csh-contact-help__links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .csh-contact-page *,
    .csh-contact-page *::before,
    .csh-contact-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
