/* Vina Derma — About Us Hero (Editorial Modern) */

.elementor-widget-vina_about_hero {
    max-width: 100%;
}

.vina-about-hero--editorial {
    --vina-about-cream: #f5efe7;
    --vina-about-sand: #efe1d1;
    --vina-about-navy: #213555;
    --vina-about-rose: #a78295;
    --vina-about-plum: #331d2c;
    --vina-about-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --vina-about-duration: 0.8s;

    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 88vh;
    min-height: 88dvh;
    overflow: hidden;
    background: var(--vina-about-cream);
    color: var(--vina-about-navy);
}

/* Ambient mesh + orbs */
.vina-about-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(167, 130, 149, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(33, 53, 85, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--vina-about-cream) 0%, #faf6f0 50%, var(--vina-about-sand) 100%);
}

.vina-about-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.vina-about-hero__orb--1 {
    width: clamp(180px, 28vw, 360px);
    height: clamp(180px, 28vw, 360px);
    top: -8%;
    left: -6%;
    background: rgba(167, 130, 149, 0.35);
    animation: vinaAboutOrbFloat 14s ease-in-out infinite alternate;
}

.vina-about-hero__orb--2 {
    width: clamp(140px, 22vw, 280px);
    height: clamp(140px, 22vw, 280px);
    bottom: 8%;
    right: 12%;
    background: rgba(33, 53, 85, 0.12);
    animation: vinaAboutOrbFloat 18s ease-in-out infinite alternate-reverse;
}

@keyframes vinaAboutOrbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(16px, -20px) scale(1.08); }
}

.vina-about-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    min-height: inherit;
    box-sizing: border-box;
}

.vina-about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    min-height: calc(88vh - 160px);
    min-height: calc(88dvh - 160px);
}

/* Content column */
.vina-about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: var(--vina-about-content-max, 100%);
}

.vina-about-hero--text-center .vina-about-hero__content {
    align-items: center;
    text-align: center;
}

.vina-about-hero--text-left .vina-about-hero__content {
    align-items: flex-end;
    text-align: left;
}

.vina-about-hero--text-right .vina-about-hero__content {
    align-items: flex-start;
    text-align: right;
}

.vina-about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(167, 130, 149, 0.25);
    color: var(--vina-about-rose);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: 0 4px 24px rgba(33, 53, 85, 0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.vina-about-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vina-about-rose);
    box-shadow: 0 0 0 4px rgba(167, 130, 149, 0.25);
    animation: vinaAboutPulse 2.4s ease-in-out infinite;
}

@keyframes vinaAboutPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.75; }
}

.vina-about-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.08em;
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.vina-about-hero__title-line {
    display: block;
    color: var(--vina-about-navy);
    font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.vina-about-hero__title-highlight {
    display: block;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    font-weight: 700;
    font-style: normal;
    background: linear-gradient(120deg, var(--vina-about-rose) 0%, var(--vina-about-plum) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vina-about-hero__description {
    margin-bottom: clamp(24px, 3.5vw, 36px);
    max-width: 100%;
    width: 100%;
    color: rgba(33, 53, 85, 0.72);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 400;
    line-height: 1.8;
}

.vina-about-hero__description p {
    margin: 0;
}

.vina-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vina-about-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--vina-about-navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(33, 53, 85, 0.22);
    transition:
        transform 0.35s var(--vina-about-ease),
        box-shadow 0.35s var(--vina-about-ease),
        background 0.35s var(--vina-about-ease),
        color 0.35s var(--vina-about-ease);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.vina-about-hero__cta:hover {
    background: var(--vina-about-rose);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(167, 130, 149, 0.35);
}

.vina-about-hero__cta:active {
    transform: translateY(-1px) scale(0.98);
}

.vina-about-hero__cta-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    font-size: 18px;
    transition: transform 0.35s var(--vina-about-ease);
}

.vina-about-hero__cta:hover .vina-about-hero__cta-icon {
    transform: translateX(-4px);
}

/* Visual column */
.vina-about-hero__visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
}

.vina-about-hero__visual-shadow {
    position: absolute;
    inset: 12% -8% -8% 8%;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(167, 130, 149, 0.35), rgba(33, 53, 85, 0.15));
    filter: blur(24px);
    z-index: 0;
}

.vina-about-hero__visual-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: clamp(20px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 32px 64px rgba(33, 53, 85, 0.18),
        0 0 0 1px rgba(33, 53, 85, 0.04);
    transform: rotate(-2deg);
    transition: transform 0.7s var(--vina-about-ease);
}

.vina-about-hero__visual:hover .vina-about-hero__visual-frame {
    transform: rotate(0deg) scale(1.02);
}

.vina-about-hero__visual-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 1.2s var(--vina-about-ease);
}

.vina-about-hero__visual:hover .vina-about-hero__visual-image,
.vina-about-hero--bg-animate.is-visible .vina-about-hero__visual-image {
    transform: scale(1.05);
}

.vina-about-hero__visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--vina-about-navy);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

[dir="rtl"] .vina-about-hero__visual-badge {
    left: auto;
    right: 20px;
}

/* Animations */
.vina-about-hero--animate .vina-about-hero__eyebrow,
.vina-about-hero--animate .vina-about-hero__title-line,
.vina-about-hero--animate .vina-about-hero__title-highlight,
.vina-about-hero--animate .vina-about-hero__description,
.vina-about-hero--animate .vina-about-hero__actions {
    opacity: 0;
    transform: translateY(24px);
}

.vina-about-hero--animate.is-visible .vina-about-hero__eyebrow,
.vina-about-hero--animate.is-visible .vina-about-hero__title-line,
.vina-about-hero--animate.is-visible .vina-about-hero__title-highlight,
.vina-about-hero--animate.is-visible .vina-about-hero__description,
.vina-about-hero--animate.is-visible .vina-about-hero__actions {
    animation: vinaAboutReveal var(--vina-about-duration) var(--vina-about-ease) both;
}

.vina-about-hero--animate.is-visible .vina-about-hero__eyebrow { animation-delay: 0.05s; }
.vina-about-hero--animate.is-visible .vina-about-hero__title-line:nth-child(1) { animation-delay: 0.12s; }
.vina-about-hero--animate.is-visible .vina-about-hero__title-highlight { animation-delay: 0.2s; }
.vina-about-hero--animate.is-visible .vina-about-hero__title-line:last-child:not(:only-child) { animation-delay: 0.28s; }
.vina-about-hero--animate.is-visible .vina-about-hero__description { animation-delay: 0.36s; }
.vina-about-hero--animate.is-visible .vina-about-hero__actions { animation-delay: 0.44s; }

.vina-about-hero--animate .vina-about-hero__reveal-visual {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

.vina-about-hero--animate.is-visible .vina-about-hero__reveal-visual {
    animation: vinaAboutVisualIn 1s var(--vina-about-ease) 0.15s both;
}

@keyframes vinaAboutReveal {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vinaAboutVisualIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__eyebrow,
.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__title-line,
.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__title-highlight,
.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__description,
.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__actions,
.elementor-edit-mode .vina-about-hero--animate .vina-about-hero__reveal-visual {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .vina-about-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
        min-height: 0;
    }

    .vina-about-hero__visual {
        order: -1;
        max-width: 440px;
    }

    .vina-about-hero__visual-frame {
        transform: rotate(0deg);
    }

    .vina-about-hero__content {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .vina-about-hero--editorial {
        min-height: 0 !important;
    }

    .vina-about-hero__grid {
        gap: 28px;
        min-height: 0;
    }

    .vina-about-hero__visual {
        max-width: 100%;
    }

    .vina-about-hero__visual-frame {
        transform: rotate(0deg);
    }

    .vina-about-hero__visual-shadow {
        inset: 6% 2% -5% 2%;
    }

    .vina-about-hero__title-line,
    .vina-about-hero__title-highlight {
        font-size: clamp(1.625rem, 7vw, 2.125rem);
        max-width: 100%;
    }

    .vina-about-hero__description {
        font-size: 0.9375rem;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .vina-about-hero__cta {
        width: 100%;
    }

    .vina-about-hero__orb--1 {
        width: 140px;
        height: 140px;
        top: 2%;
        left: -20%;
    }

    .vina-about-hero__orb--2 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vina-about-hero__orb--1,
    .vina-about-hero__eyebrow-dot {
        animation: none;
    }

    .vina-about-hero__cta,
    .vina-about-hero__visual-frame,
    .vina-about-hero__visual-image {
        transition: none;
    }

    .vina-about-hero--animate .vina-about-hero__eyebrow,
    .vina-about-hero--animate .vina-about-hero__title-line,
    .vina-about-hero--animate .vina-about-hero__title-highlight,
    .vina-about-hero--animate .vina-about-hero__description,
    .vina-about-hero--animate .vina-about-hero__actions,
    .vina-about-hero--animate .vina-about-hero__reveal-visual {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
