.ct-bar {
    background: var(--dark3);
    border-top: 1px solid rgba(184, 150, 62, .08);
    border-bottom: 1px solid rgba(184, 150, 62, .15);
}

.ct-bar-inner {
    display: flex;
}

.ct-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 32px;
    border-right: 1px solid rgba(184, 150, 62, .1);
    transition: background .3s;
}

.ct-bar-item:last-child {
    border-right: none;
}

.ct-bar-item:hover {
    background: rgba(184, 150, 62, .05);
}

.ct-bar-icon {
    width: 46px;
    height: 46px;
    background: rgba(184, 150, 62, .1);
    border: 1px solid rgba(184, 150, 62, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    transition: background .3s;
}

.ct-bar-item:hover .ct-bar-icon {
    background: rgba(184, 150, 62, .18);
}

.ct-bar-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.ct-bar-val {
    font-size: 12px;
    color: var(--txt);
    line-height: 1.5;
}

.ct-bar-val a {
    color: var(--txt);
    transition: color .25s;
}

.ct-bar-val a:hover {
    color: var(--gold);
}

.ct-main-sec {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 96px 0 88px;
    position: relative;
    overflow: hidden;
}

.ct-main-sec::before {
    content: 'W\0026C';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(140px, 20vw, 300px);
    font-weight: 700;
    color: rgba(184, 150, 62, .025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: 20px;
    white-space: nowrap;
    user-select: none;
    z-index: 0;
}

.ct-main-sec .container {
    position: relative;
    z-index: 1;
}

.ct-info-panel {
    position: sticky;
    top: 100px;
}

.ct-info-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
}

.ct-info-sub {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.85;
    margin-bottom: 32px;
}

.ct-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(184, 150, 62, .12);
    border-left: 3px solid var(--gold);
    margin-bottom: 10px;
    transition: background .3s, border-color .3s, transform .3s;
}

.ct-contact-card:hover {
    background: rgba(184, 150, 62, .06);
    border-color: rgba(184, 150, 62, .35);
    transform: translateX(5px);
}

.ct-cc-icon {
    width: 44px;
    height: 44px;
    background: rgba(184, 150, 62, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.ct-cc-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.ct-cc-val {
    font-size: 13px;
    color: var(--txt);
    line-height: 1.5;
}

.ct-cc-val a {
    color: var(--txt);
    transition: color .2s;
}

.ct-cc-val a:hover {
    color: var(--gold);
}

.ct-social-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.ct-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 150, 62, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt2);
    font-size: 16px;
    transition: all .3s;
}

.ct-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

@media(max-width:991px) {
    .ct-bar-inner {
        flex-wrap: wrap;
    }

    .ct-bar-item {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(184, 150, 62, .08);
    }

    .ct-bar-item:nth-child(2n) {
        border-right: none;
    }

    .ct-bar-item:nth-child(3),
    .ct-bar-item:nth-child(4) {
        border-bottom: none;
    }
}

@media(max-width:575px) {
    .ct-bar-item {
        flex: 1 1 100%;
        border-right: none;
    }
}