.eh-1278-wrapper {
    position: relative;
    min-height: 850px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    color: #fff;
    overflow: hidden;
    padding: 100px 5%;
}

/* Subtle dark overlay to ensure text readability if image is too bright */
.eh-1278-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.eh-1278-content-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.eh-1278-main-content {
    max-width: 700px;
    text-align: left;
}

.eh-1278-brand {
    margin-bottom: 30px;
}

.eh-1278-logo {
    max-width: 250px;
    height: auto;
}

.eh-1278-top-heading {
    font-size: 24px;
    letter-spacing: 3px;
    margin: 0 0 10px;
    color: #cca561;
    text-transform: uppercase;
    font-weight: normal;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.eh-1278-main-heading {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.eh-1278-main-heading .small-text {
    font-size: 0.6em;
    vertical-align: middle;
}

.eh-1278-main-heading .gold-text {
    color: #cca561;
}

.eh-1278-script-heading {
    font-family: 'Brush Script MT', 'Great Vibes', cursive;
    font-size: 42px;
    color: #cca561;
    margin: 0 0 30px;
    font-weight: normal;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.eh-1278-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 40px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.eh-1278-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.eh-1278-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.eh-1278-btn-solid {
    background: linear-gradient(180deg, #cca561 0%, #a17f41 100%);
    color: #fff !important;
    border: 1px solid #e6c887;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.eh-1278-btn-solid:hover {
    background: linear-gradient(180deg, #d8b475 0%, #b38e4a 100%);
    transform: translateY(-2px);
}

.eh-1278-btn-outline {
    background: rgba(0,0,0,0.4);
    color: #fff !important;
    border: 1px solid #cca561;
    backdrop-filter: blur(4px);
}

.eh-1278-btn-outline:hover {
    background: rgba(204, 165, 97, 0.2);
    border-color: #fff;
}

.eh-1278-callout-box {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(30,30,30,0.9) 0%, rgba(10,10,10,0.95) 100%);
    border: 2px solid #cca561;
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(204,165,97,0.1);
    border-top-left-radius: 40px; /* The curved scallop effect */
    border-top-right-radius: 40px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.eh-1278-callout-top {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #cca561;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.eh-1278-callout-main {
    font-size: 26px;
    margin: 0 0 8px;
    color: #cca561;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.eh-1278-callout-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin: 0;
    color: #fff;
}

@media (max-width: 1024px) {
    .eh-1278-callout-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 60px;
        align-self: center;
        width: 100%;
        max-width: 400px;
    }
    
    .eh-1278-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .eh-1278-main-heading {
        font-size: 38px;
    }
    
    .eh-1278-script-heading {
        font-size: 32px;
    }
    
    .eh-1278-callout-main {
        font-size: 20px;
    }
}