/* Reddani — Widget Hero PREMIUM ÉDITORIAL */
.rw-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.rw-hero.rw-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .rw-hero { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.rw-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.rw-hero.rw-in .rw-hero-bg { transform: scale(1); }
.rw-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.rw-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(182,146,74,.10) 0%, transparent 60%);
    pointer-events: none;
}
.rw-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 32px;
    color: #FFFFFF;
}
.rw-hero-eyebrow {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #B6924A;
    margin: 0 0 28px 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.rw-eyebrow-dot {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: 1;
}
.rw-hero-title {
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.08;
    letter-spacing: -.022em;
    color: #FFFFFF;
    margin: 0 0 32px 0;
    max-width: 860px;
    text-shadow: 0 2px 18px rgba(0,0,0,.32);
}
.rw-hero-title em, .rw-hero-title i {
    font-style: italic;
    font-weight: 300;
    color: #B6924A;
}
.rw-hero-intro {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.92);
    max-width: 640px;
    text-shadow: 0 1px 10px rgba(0,0,0,.30);
}
.rw-hero-intro p { margin: 0 0 .9em 0; }
.rw-hero-intro p:last-child { margin-bottom: 0; }
.rw-hero-content::after {
    content: '';
    position: absolute;
    bottom: 56px; left: 32px;
    width: 1px; height: 56px;
    background: linear-gradient(180deg, transparent, #B6924A);
    animation: rw-scroll-line 2.5s ease-in-out infinite;
}
@keyframes rw-scroll-line {
    0%, 100% { transform: scaleY(.5); transform-origin: top; opacity: .4; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .rw-hero-content::after { animation: none; }
}
.rw-sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 768px) {
    .rw-hero { min-height: 480px; }
    .rw-hero-content { padding: 72px 20px; }
    .rw-hero-intro { font-size: 16px; }
    .rw-hero-content::after { display: none; }
}
