/* ============================================
   JENNY INFLUENCER — STYLE SHEET
   Color Palette:
     --green:  #2D6A4F (organic/natural)
     --gold:   #C9A84C (luxury/beauty)
     --cream:  #FDF8F0 (warm background)
     --dark:   #1A1A2E (text/dark sections)
     --white:  #FFFFFF
   ============================================ */

:root {
    --green: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #D8F3DC;
    --gold: #C9A84C;
    --gold-light: #E0C872;
    --cream: #FDF8F0;
    --dark: #1A1A2E;
    --dark-light: #2A2A3E;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTION COMMON */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--cream);
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.section__eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section__eyebrow--center {
    text-align: center;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section__title--center {
    text-align: center;
}

.section__desc {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section--dark .section__desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
}

.logo__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 4px 14px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.lang-toggle:hover {
    background: var(--green);
    color: var(--white);
}

.lang-toggle__option {
    color: var(--gray);
    transition: color var(--transition);
}

.lang-toggle__option--active {
    color: var(--green);
}

.lang-toggle:hover .lang-toggle__option {
    color: rgba(255, 255, 255, 0.6);
}

.lang-toggle:hover .lang-toggle__option--active {
    color: var(--white);
}

.lang-toggle__divider {
    color: var(--gray-light);
    font-weight: 300;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

.hero__image {
    position: relative;
    min-height: 100vh;
    padding-top: 72px;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding: 100px 48px 48px;
    max-width: 700px;
}

.hero__subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.btn--primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--full {
    width: 100%;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img--main {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about__img--accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__text {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight__icon svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

.highlight strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.project {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.project:last-child {
    margin-bottom: 0;
}

.project--reverse {
    grid-template-columns: 1fr 1.2fr;
}

.project--reverse .project__images {
    order: 2;
}

.project--reverse .project__content {
    order: 1;
}

.project__img--wide {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 16px;
}

.project__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.project__img-row .project__img {
    width: 100%;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.project__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    background: var(--green-pale);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.project__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.project__desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.project__results {
    display: flex;
    gap: 32px;
}

.project__result {
    text-align: center;
}

.project__result-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
}

.project__result-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VIDEOS
   ============================================ */
.videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card__wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--dark);
    cursor: pointer;
}

.video-card__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card__play svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    margin-left: 3px;
}

.video-card__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.video-card__play.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-card__caption {
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.section--alt .video-card__caption {
    color: var(--dark);
}

/* ============================================
   WHY JENNY
   ============================================ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    padding: 40px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-pale);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card__desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section--dark .section__title {
    color: var(--white);
}

.contact__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact__channels {
    display: flex;
    gap: 16px;
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.contact__channel svg {
    width: 20px;
    height: 20px;
}

.contact__channel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.contact__form {
    background: var(--dark-light);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__copy {
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about__grid {
        gap: 48px;
    }

    .project {
        gap: 40px;
    }

    .contact__grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--green-pale);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero__image {
        min-height: 50vh;
    }

    .hero__content {
        padding: 40px 20px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__img--accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 60%;
        margin-top: -60px;
        margin-left: auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .project {
        grid-template-columns: 1fr;
    }

    .project--reverse .project__images {
        order: 0;
    }

    .project--reverse .project__content {
        order: 0;
    }

    .project__results {
        flex-wrap: wrap;
        gap: 24px;
    }

    .videos__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__channels {
        flex-wrap: wrap;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 64px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        padding: 28px;
    }

    .videos__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .video-card__play {
        width: 48px;
        height: 48px;
    }

    .video-card__play svg {
        width: 18px;
        height: 18px;
    }

    .contact__form {
        padding: 24px;
    }

    .project__results {
        justify-content: center;
    }
}
