/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--bg-primary);
}

/* Hero hover-reveal cards */
.hero__hover-zone {
    position: absolute;
    z-index: 22;
}

.hero__float-card {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
    will-change: transform, opacity;
    border-radius: 0;
}

.hero__float-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Diamond dots on the i */
.hero__logo-i {
    position: relative;
    display: inline-block;
}

.hero__diamond {
    position: absolute;
    top: 1vw;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-pink);
    font-size: 3vw;
    line-height: 1;
}

/* Main row: side text - logo - side text */
.hero__main-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 92%;
    gap: 1vw;
    padding-top: 3vw;
}

/* Large winwin logo - BLACK, Neco font */
.hero__logo {
    font-family: var(--font-heading);
    font-size: 17vw;
    color: var(--color-dark);
    text-transform: lowercase;
    letter-spacing: 0.1vw;
    line-height: 0.75;
    white-space: nowrap;
}

.hero__logo-thin {
    font-weight: 400;
}

.hero__logo-bold {
    font-family: 'Hoover', var(--font-heading);
    font-weight: 700;
}

/* Side texts - aligned with logo */
.hero__side-text {
    font-size: 1vw;
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
    padding-bottom: 0;
}

.hero__side-text--left {
    text-align: right;
}

/* Tagline */
.hero__tagline {
    font-family: var(--font-body);
    font-size: 1.4vw;
    font-weight: 400;
    color: var(--color-dark);
    margin-top: 6vh;
    letter-spacing: 0.05vw;
}

/* Projects Strip */
.projects-strip {
    padding: 0;
    overflow: clip;
    background: var(--bg-primary);
    direction: ltr;
    position: relative;
    margin-left: -3vw;
    margin-right: -3vw;
}

/* Drag scroll track */
.projects-strip__track {
    display: flex;
    gap: 1vw;
    width: max-content;
    cursor: grab;
    user-select: none;
    align-items: flex-start;
}

.projects-strip__track.grabbing {
    cursor: grabbing;
}

.projects-strip__item {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.projects-strip__item img {
    width: 20vw;
    height: auto;
    display: block;
    pointer-events: none;
}

.projects-strip__overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 2vh 1.5vw;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.projects-strip__item:hover .projects-strip__overlay {
    opacity: 1;
}

.projects-strip__overlay h3 {
    font-size: var(--font-size-small);
    color: #F5F5F5;
}

/* CTA link under strip */
.projects-strip__cta {
    text-align: center;
    padding: 4vh 0;
    background: var(--bg-primary);
}

.projects-strip__link {
    font-family: var(--font-body);
    font-size: 1vw;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition-fast);
    letter-spacing: 0.05vw;
    background: #FFF;
    padding: 1.2vh 2.5vw;
    border-radius: 5vw;
    display: inline-block;
}

.projects-strip__link:hover {
    color: var(--accent-pink);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 10vh 0;
    background: var(--bg-primary);
}

.cta-section h2 {
    margin-bottom: 2vh;
    color: var(--color-dark);
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 4vh;
    font-size: var(--font-size-body);
}

/* About Section */
.about-section {
    padding: 30vh 0 10vh;
    background: var(--bg-primary);
}

.about-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 3vw;
    direction: ltr;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 9vw;
    line-height: 0.8;
    color: var(--color-dark);
    text-transform: lowercase;
    flex-shrink: 0;
    text-align: left;
    direction: ltr;
}

.about-title__line + .about-title__line {
    font-size: 10.5vw;
    margin-top: -1.5vw;
}

.about-title__line {
    display: block;
}

.about-title__thin {
    font-weight: 400;
}

.about-title__bold {
    font-family: 'Hoover', var(--font-heading);
    font-weight: 700;
}

.about-title__diamond {
    color: var(--accent-pink);
    font-size: 3vw;
    vertical-align: middle;
    margin-left: 0.3vw;
}

.about-intro {
    padding-top: 2vw;
    max-width: 40vw;
    direction: rtl;
    text-align: right;
    margin: 0 auto;
}

.about-intro__greeting {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

.about-intro__name {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 1.5vh;
}

.about-intro__role {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.5vh;
}

.about-intro__text p {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.5vh;
}

/* Services Section */
.services-section {
    padding: 30vh 0 12vh;
    background: var(--bg-primary);
}

.services-section__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 4vw;
}

.services-section__text {
    flex: 1;
    text-align: right;
    padding-right: 2vw;
}

.services-section__bigtitle {
    font-family: var(--font-heading);
    font-size: 7.5vw;
    line-height: 0.8;
    color: var(--color-dark);
    text-transform: lowercase;
    flex-shrink: 0;
    text-align: right;
    direction: ltr;
    letter-spacing: -0.2vw;
}

.services-section__bigtitle-line {
    display: block;
}

.services-section__bigtitle-thin {
    font-weight: 500;
    margin-bottom: 0.8vw;
    margin-right: 0;
}

.services-section__bigtitle-bold {
    font-family: 'Hoover', var(--font-heading);
    font-weight: 700;
    font-size: 9vw;
    margin-top: -1vw;
    letter-spacing: -0.1vw;
    padding-right: 3vw;
}

.services-section__heading {
    font-family: 'Polin', var(--font-body);
    font-size: 1.1vw;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 1.5vh;
    text-align: right;
    direction: rtl;
    letter-spacing: -0.02vw;
    margin-top: -5vw;
}

.services-section__highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5vh;
    margin-bottom: 0.5vh;
}

.services-section__diamond {
    color: var(--accent-pink);
    font-size: 2vw;
}

.services-section__title {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    font-weight: 600;
    color: var(--color-dark);
}

.services-section__desc {
    font-family: 'Polin', var(--font-body);
    font-size: 0.95vw;
    color: var(--color-dark);
    font-weight: 400;
    line-height: 1.5;
}

.services-section__cards {
    display: flex;
    gap: 3vw;
    margin-bottom: 4vh;
    width: 100%;
    margin-top: 6vh;
    direction: rtl;
    text-align: right;
}

.services-section__card {
    flex: 1;
    position: relative;
}

.services-section__card-img {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 10vw;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    z-index: 10;
}

.services-section__card:hover .services-section__card-img {
    opacity: 1;
}

.services-section__card-title {
    font-family: 'Polin', var(--font-body);
    font-size: 1.1vw;
    color: var(--color-dark);
    font-weight: 600;
    margin-top: 1.5vh;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.services-section__card:hover .services-section__card-title {
    color: var(--accent-pink);
}

.services-section__card-desc {
    font-family: 'Polin', var(--font-body);
    font-size: 0.85vw;
    color: var(--color-dark);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.5vh;
}

.services-section__link {
    font-family: 'Polin', var(--font-body);
    font-size: 1vw;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all var(--transition-fast);
    display: inline-block;
    text-align: right;
    background: #FFF;
    padding: 1vh 2vw;
    border-radius: 5vw;
}

.services-section__link:hover {
    color: var(--accent-pink);
}

/* UXUI section - dark theme, full viewport width */
.services-section--uxui {
    background: var(--color-dark, #1a1a1a);
    margin-left: -3vw;
    margin-right: -3vw;
    padding-left: 3vw;
    padding-right: 3vw;
}

.services-section--uxui .services-section__bigtitle,
.services-section--uxui .services-section__bigtitle-thin,
.services-section--uxui .services-section__bigtitle-bold,
.services-section--uxui .services-section__heading,
.services-section--uxui .services-section__title,
.services-section--uxui .services-section__desc,
.services-section--uxui .services-section__card-title,
.services-section--uxui .services-section__card-desc {
    color: #FFFFFF;
}

.services-section--uxui .services-section__link {
    background: #FFFFFF;
    color: var(--color-dark, #1a1a1a);
}

.services-section--uxui .services-section__link:hover {
    color: var(--accent-pink);
}

/* Branding section - mirrored layout */
.services-section--branding .services-section__bigtitle {
    text-align: left;
    margin-right: 0;
}

.services-section--branding .services-section__bigtitle-thin {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.services-section--branding .services-section__bigtitle-bold {
    letter-spacing: -0.4vw;
    padding-left: 3vw;
}

.services-section--branding .services-section__text {
    padding-right: 0;
}

.services-section--branding .services-section__cards {
    direction: rtl;
    text-align: right;
}

.services-section--branding .services-section__link {
    text-align: right;
}


@media (max-width: 768px) {
    .hero__logo {
        font-size: 15vw;
    }

    .hero__diamond {
        font-size: 4vw;
        top: -1vw;
    }

    .hero__main-row {
        flex-direction: column;
        gap: 3vh;
    }

    .hero__side-text {
        text-align: center;
        font-size: 3.5vw;
    }

    .hero__side-text--left {
        text-align: center;
    }

    .hero__tagline {
        font-size: 4vw;
    }

    .projects-strip__item img {
        max-height: 30vw;
    }

    .projects-strip__track {
        animation-duration: 15s;
    }

    .about-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-title {
        font-size: 20vw;
    }

    .about-title__diamond {
        font-size: 5vw;
    }

    .about-intro {
        max-width: 100%;
        padding-top: 4vh;
    }

    .about-intro__greeting { font-size: 3.5vw; }
    .about-intro__name { font-size: 7vw; }
    .about-intro__role { font-size: 3vw; }
    .about-intro__text p { font-size: 3.5vw; }
}
