.ch-hero-section-3af352cf {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
    color: #ffffff;
    box-sizing: border-box;
    padding: 100px 6% 40px 6%;
}

.ch-hero-section-3af352cf * {
    box-sizing: border-box;
}

/* Light geometric grid overlay */
.ch-grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

/* Duotone overlay */
.ch-duotone-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 31, 19, 0.93) 0%, rgba(1, 15, 9, 0.96) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.ch-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1320px;
    margin: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left column typography */
.ch-left-col {
    flex: 1 1 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Top Badge */
.ch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.ch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F59E0B;
}

.ch-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 4.8vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.ch-white-text {
    color: #ffffff;
    display: block;
}

.ch-gold {
    color: #F59E0B;
    display: block;
}

.ch-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 35px 0;
    max-width: 540px;
}

.ch-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ch-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F59E0B;
    color: #031c11;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
}

.ch-btn-solid:hover {
    transform: translateY(-1px);
}

.ch-btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: background-color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.ch-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Right Column Floating Glass Card */
.ch-right-col {
    flex: 1 1 420px;
    display: flex;
    justify-content: flex-end;
}

.ch-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 30px 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.ch-card-meta {
    margin-bottom: 24px;
}

.ch-card-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #10B981;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.ch-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
}

.ch-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ch-menu-item-link {
    text-decoration: none;
    display: block;
}

.ch-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.ch-menu-item:hover {
    transform: translateY(-1px);
}

.ch-menu-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ch-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #10B981;
    font-size: 0.95rem;
}

.ch-menu-icon svg, .ch-menu-icon i {
    width: 16px;
    height: 16px;
}

.ch-menu-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ch-menu-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.ch-menu-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.ch-chevron {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
}

.ch-card-phone-link {
    text-decoration: none;
    display: block;
}

.ch-card-phone-bar {
    background: #06110b;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.2s;
}

/* Bottom Metadata Footer */
.ch-metadata-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 50px;
    width: 100%;
}

.ch-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.ch-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ch-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ch-meta-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 991px) {
    .ch-hero-container {
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
    }
    .ch-right-col {
        justify-content: center;
    }
}
