/* ===========================
   PAGES.CSS — Shared styles for Work, Contact, Menu
   Inspired by the home page's bold typography,
   dark/white contrast, and GSAP-driven aesthetic.
   =========================== */

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    width: 100%;
    overflow: hidden;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 100px;
    overflow: hidden;
}

.page-hero--dark {
    background-color: #000;
    color: #fff;
}

.page-hero__content {
    max-width: 900px;
}

.page-hero__title {
    font-size: 12vw;
    font-stretch: 500%;
    font-weight: 800;
    line-height: 0.88;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.page-hero__title .title-line {
    display: block;
    overflow: hidden;
}

.page-hero__subtitle {
    font-family: gilroy;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    line-height: 1.6;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-family: gilroy;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.4);
}


/* ===========================================================
   WORK PAGE
   =========================================================== */
.work-section {
    background-color: #fff;
    padding: 120px 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.work-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    background: #f4f4f4;
}

.work-card--large {
    grid-column: span 1;
}

.work-card--full {
    grid-column: span 2;
}

.work-card__img-wrap {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.work-card--full .work-card__img-wrap {
    height: 560px;
}

.work-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .work-card__img-wrap img {
    transform: scale(1.05);
}

.work-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
}

.work-card__info h3 {
    font-family: HeadingNow;
    font-size: 22px;
    font-weight: 600;
    font-stretch: 400%;
    text-transform: uppercase;
}

.work-card__tag {
    font-family: gilroy;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.work-card__info i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.work-card:hover .work-card__info i {
    transform: translate(4px, -4px);
}


/* ===========================================================
   PAGE CTA (reusable call-to-action)
   =========================================================== */
.page-cta {
    background-color: #000;
    padding: 140px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-cta__title {
    color: #fff;
    font-size: 9vw;
    font-stretch: 400%;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.page-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-family: gilroy;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.page-cta__btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.page-cta__btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.page-cta__btn:hover i {
    transform: translateX(5px);
    color: #000;
}


/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-section {
    background-color: #fff;
    padding: 120px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 140px;
}

.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info__label {
    font-family: HeadingNow;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.contact-info__text {
    font-family: gilroy;
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}

.contact-info__link {
    font-family: gilroy;
    font-size: 18px;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    width: fit-content;
}

.contact-info__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #000;
    transition: width 0.4s ease;
}

.contact-info__link:hover::after {
    width: 100%;
}

.contact-info__link:hover {
    color: #000;
}

.contact-socials {
    display: flex;
    gap: 16px;
}

.contact-social-link {
    font-family: gilroy;
    font-size: 16px;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    color: #000;
}

/* -- Form -- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: HeadingNow;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.form-input {
    font-family: gilroy;
    font-size: 17px;
    font-weight: 500;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    color: #111;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-bottom-color: #000;
}

.form-input::placeholder {
    color: #bbb;
}

.form-select {
    cursor: pointer;
    color: #111;
}

.form-select option {
    font-family: gilroy;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #000;
    color: #fff;
    font-family: HeadingNow;
    font-size: 16px;
    font-weight: 500;
    font-stretch: 400%;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
}

.form-submit:hover {
    background: #fff;
    color: #000;
}

.form-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translate(4px, -4px);
}

/* -- Contact Visual -- */
.contact-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    background-color: #000;
}

.contact-visual__text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.contact-visual__text h2 {
    color: #fff;
    font-size: 8vw;
    font-stretch: 500%;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.contact-visual__text p {
    font-family: gilroy;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 380px;
}

.contact-visual__video {
    overflow: hidden;
}

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


/* ===========================================================
   MENU PAGE
   =========================================================== */
.menu-hero {
    min-height: 100vh;
    background-color: #000;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding: 140px 60px 80px;
    gap: 60px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    transition: padding-left 0.4s ease;
    position: relative;
}

.menu-nav__link::before {
    content: attr(data-num);
    font-family: gilroy;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    margin-right: 30px;
    transition: color 0.3s ease;
}

.menu-nav__link:hover {
    padding-left: 20px;
}

.menu-nav__link:hover::before {
    color: rgba(255, 255, 255, 0.7);
}

.menu-nav__text {
    font-size: 7vw;
    font-stretch: 500%;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    flex: 1;
}

.menu-nav__link i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-nav__link:hover i {
    color: #fff;
    transform: translate(4px, -4px);
}

/* Menu aside */
.menu-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: flex-end;
    padding-bottom: 28px;
}

.menu-aside-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-aside__label {
    font-family: HeadingNow;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.menu-aside__link {
    font-family: gilroy;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-aside__link:hover {
    color: #fff;
}

.menu-socials {
    display: flex;
    gap: 18px;
}


/* ===========================================================
   SERVICES SECTION
   =========================================================== */
.services-section {
    background-color: #fff;
    padding: 120px 60px;
}

.services-header {
    margin-bottom: 80px;
}

.services-title {
    font-size: 10vw;
    font-stretch: 500%;
    font-weight: 800;
    line-height: 0.88;
    text-transform: uppercase;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-card {
    padding: 50px 40px;
    border: 1px solid #eee;
    position: relative;
    transition: background 0.4s ease;
}

.service-card:hover {
    background: #f8f8f8;
}

.service-num {
    font-family: gilroy;
    font-size: 14px;
    color: #bbb;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 20px;
}

.service-name {
    font-family: HeadingNow;
    font-size: 28px;
    font-stretch: 400%;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-desc {
    font-family: gilroy;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 340px;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover .service-line {
    transform: scaleX(1);
}


/* ===========================================================
   ABOUT SECTION
   =========================================================== */
.about-section {
    background-color: #000;
    padding: 120px 60px;
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 140px;
}

.about-title {
    font-size: 8vw;
    font-stretch: 500%;
    font-weight: 800;
    line-height: 0.88;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title .title-line {
    display: block;
}

.about-desc {
    font-family: gilroy;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 480px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-visual img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.about-visual img:first-child {
    height: 400px;
}

.about-visual img:last-child {
    height: 520px;
}


/* ===========================================================
   RESPONSIVE — Mobile (max-width: 600px)
   =========================================================== */
@media (max-width: 600px) {

    /* Hero */
    .page-hero {
        padding: 0 20px 60px;
    }

    .page-hero__title {
        font-size: 16vw;
    }

    .page-hero__subtitle {
        font-size: 16px;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 40px;
    }

    /* Work */
    .work-section {
        padding: 60px 20px;
    }

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

    .work-card--large,
    .work-card--full {
        grid-column: span 1;
    }

    .work-card__img-wrap,
    .work-card--full .work-card__img-wrap {
        height: 280px;
    }

    .work-card__info h3 {
        font-size: 18px;
    }

    /* CTA */
    .page-cta {
        padding: 80px 20px;
    }

    .page-cta__title {
        font-size: 13vw;
    }

    /* Contact */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        position: static;
    }

    .contact-visual {
        grid-template-columns: 1fr;
    }

    .contact-visual__text {
        padding: 60px 20px;
    }

    .contact-visual__text h2 {
        font-size: 14vw;
    }

    .contact-visual__video {
        height: 300px;
    }

    /* Menu */
    .menu-hero {
        grid-template-columns: 1fr;
        padding: 120px 20px 60px;
        gap: 50px;
    }

    .menu-nav__text {
        font-size: 12vw;
    }

    .menu-nav__link i {
        font-size: 24px;
    }

    /* Services */
    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 14vw;
    }

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

    .service-card {
        padding: 36px 24px;
    }

    .service-name {
        font-size: 22px;
    }

    /* About */
    .about-section {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .about-text {
        position: static;
    }

    .about-visual img:first-child {
        height: 260px;
    }

    .about-visual img:last-child {
        height: 340px;
    }
}