/*
Theme Name: Jor Models
Template: twentytwentyfive
Version: 1.0.0
Description: Child theme for Jor Models website
Text Domain: jor-models
*/

*, *::before, *::after {
    box-sizing: border-box;
}

/* Switzer Variable Font */
@font-face {
    font-family: 'Switzer';
    src: url('assets/fonts/Switzer-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* =====================
   GLOBAL BUTTON STYLES
   ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover svg {
    transform: rotate(45deg);
}

.btn-light {
    background-color: #ffc478;
    color: #0e0e0e;
}

.btn-light:hover {
    background-color: #474242;
    color: #ffffff;
}

.btn-dark {
    background-color: #474242;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #ffc478;
    color: #0e0e0e;
}

.btn-white {
    background-color: #ffffff;
    color: #0e0e0e;
}

.btn-white:hover {
    background-color: #ffc478;
    color: #ffffff;
}

/* =====================
   STICKY HEADER
   ===================== */

.wp-block-template-part header,
header.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
}

/* =====================
   MOBILE NAVIGATION
   ===================== */

@media (max-width: 768px) {

    /* Swap order — Let's Talk first, hamburger second */
    .wp-block-navigation__responsive-container-open {
        order: 2;
    }

    .wp-block-navigation__responsive-container-open {
        order: 2 !important;
    }

    /* Style the hamburger button */
    .wp-block-navigation__responsive-container-open {
        color: #0e0e0e !important;
    }

    /* Full screen dark overlay when menu opens */
    .wp-block-navigation__responsive-container.is-menu-open {
        background-color: #fffff !important;
        padding: 40px 30px !important;
    }

    /* Nav links in open menu */
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
        color: #0e0e0e !important;
        font-family: 'Switzer', sans-serif !important;
        font-size: 20px !important;
        font-weight: 500 !important;
        letter-spacing: 0.05em !important;
    }

    /* Close button */
    .wp-block-navigation__responsive-container-close {
        color: #0e0e0e !important;
    }
    
    /* Let's Talk button inside mobile menu */
.wp-block-navigation-item.nav-cta {
    display: none;
}

.wp-block-navigation__responsive-container.is-menu-open .nav-cta {
    display: block !important;
}

.wp-block-navigation__responsive-container.is-menu-open .nav-cta .wp-block-navigation-item__content {
    background-color: #ffc478 !important;
    color: #0e0e0e !important;
    padding: 10px 20px !important;
    display: inline-block !important;
    margin-top: 20px !important;
    font-size: 16px !important;
    letter-spacing: 0.08em !important;
}
}

@media (max-width: 768px) {
    .btn-nav {
        display: none !important;
    }
}

.nav-cta {
    display: none;
}

/* =====================
   NAV BUTTON
   ===================== */

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: #ffc478;
    color: #0e0e0e;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-nav svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-nav:hover {
    background-color: #474242;
    color: #ffffff;
}

.btn-nav:hover svg {
    transform: rotate(45deg);
}

/* =====================
   HERO SLIDER
   ===================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: all;
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.08) 40%,
        rgba(0,0,0,0.55) 100%
    );
}

/* Content positioning */
.hero-slider__content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.hero-slider__content--left-bottom {
    bottom: 60px;
    left: 60px;
}

.hero-slider__content--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
}

.hero-slider__content .btn {
    align-self: flex-start;
}

/* Text styles */
.hero-slider__heading {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(36px, 5.5vw, 80px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.hero-slider__subtext {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
    letter-spacing: 0.02em;
}

/* Animate in */
.anim-hero-text {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-hero-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dot navigation */
.hero-slider__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-slider__dot.is-active {
    background-color: #ffffff;
    transform: scale(1.35);
}

/* Mobile */
@media (max-width: 600px) {
    .hero-slider {
        height: 85vh;
    }

    .hero-slider__content--left-bottom {
        bottom: 60px;
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .hero-slider__content--center {
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        max-width: 100%;
    }

    .hero-slider__heading {
        font-size: clamp(28px, 8vw, 40px);
    }
}



/* =====================
   FULL WIDTH BANNER BUTTON
   ===================== */

.btn-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #0e0e0e;
    font-family: 'Switzer', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #989898;
    border-top: 1px solid #989898;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-banner:hover {
    background-color: #ffc478;
    color: #0e0e0e;
}

.btn-banner svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-banner:hover svg {
    transform: rotate(45deg);
}

/* =====================
   SECTION PADDING UTILITY
   ===================== */

.section-pad {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* =====================
   SERVICES GRID
   ===================== */

.wp-block-shortcode {
    width: 100% !important;
    max-width: 100% !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 60px 32px !important;
    width: 100% !important;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card__meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 8px 0;
}

.service-card__label {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #6e6e6e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__title {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0e0e0e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card__title:hover {
    color: #ffc478;
}

.service-card__title svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card__title:hover svg {
    transform: rotate(45deg);
}

.service-card__tag {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #6e6e6e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card__image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.03);
}

.service-card--cta {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px;
    border-top: 1px solid #989898;
    gap: 32px;
}

.service-card--cta p {
    font-family: 'Switzer', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    color: #0e0e0e;
    margin: 0;
}

/* =====================
   PROJECTS CAROUSEL
   ===================== */

.projects-carousel-wrapper {
    position: relative;
    width: 100%;
}

.projects-carousel-wrapper,
.projects-carousel {
    max-width: none !important;
    width: 100% !important;
}

.projects-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-card__image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.03);
}

.project-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.project-card__location {
    font-family: 'Switzer', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6e6e6e;
    letter-spacing: 0.08em;
}

.project-card__name {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0e0e0e;
}

/* =====================
   HERO PROJECTS GALLERY
   ===================== */

.hero-gallery {
    width: 100%;
    position: relative;
}

/* Desktop */
.hero-gallery__desktop {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-gallery__slide.is-active {
    opacity: 1;
    pointer-events: all;
}

/* Add overlay to main image */
.hero-gallery__main-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-gallery__main-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero-gallery__info {
    position: absolute;
    top: 60px;
    left: 60px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #ffffff;
    z-index: 2;
}

.hero-gallery__location {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-gallery__title {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-gallery__phrase {
    position: absolute;
    bottom: 60px;
    left: 60px;
    font-family: 'Switzer', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    z-index: 2;
    max-width: 55%;
}

.hero-gallery__location,
.hero-gallery__title,
.hero-gallery__phrase {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-gallery__location.is-visible,
.hero-gallery__title.is-visible,
.hero-gallery__phrase.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Thumbnail */
.hero-gallery__thumb-wrapper {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 3;
}

.hero-gallery__thumb {
    display: none;
    cursor: pointer;
    width: 300px;
    
    overflow: hidden;
    border: 1px solid #ffffff;
}

.hero-gallery__thumb.is-active {
    display: block;
}

.hero-gallery__thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-gallery__thumb:hover img {
    transform: scale(1.03);
}

.hero-gallery__thumb-info {
    background: rgba(0,0,0,0.6);
    padding: 8px 12px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.hero-gallery__thumb-info span {
    font-family: 'Switzer', sans-serif;
    color: #ffffff;
    font-size: 11px;
}

.hero-gallery__thumb-info span:first-child {
    opacity: 0.7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-gallery__thumb-info span:last-child {
    font-weight: 500;
    font-size: 13px;
}

/* Mobile */
.hero-gallery__mobile {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
}

.hero-gallery__mobile::-webkit-scrollbar {
    display: none;
}

.hero-gallery__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    position: relative;
}

.hero-gallery__card-img {
    width: 100%;
    height: 80vw;
    background-size: cover;
    background-position: center;
}

.hero-gallery__card-meta {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #989898;
}

.hero-gallery__card-location {
    font-family: 'Switzer', sans-serif;
    font-size: 11px;
    color: #6e6e6e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-gallery__card-title {
    font-family: 'Switzer', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0e0e0e;
}

@media (max-width: 768px) {
    .hero-gallery__desktop {
        display: none;
    }

    .hero-gallery__mobile {
        display: flex;
    }
}

/* =====================
   PROJECTS GALLERY PAGE
   ===================== */

.gallery-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #989898;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
    display: none;
}

.gallery-tab {
    font-family: 'Switzer', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6e6e6e;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-bottom: -1px;
}

.gallery-tab:hover {
    color: #0e0e0e;
}

.gallery-tab.is-active {
    color: #0e0e0e;
    border-bottom-color: #0e0e0e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    width: 100%;
}

.project-card.is-hidden {
    display: none;
}

/* =====================
   CLIENTS LOGO TICKER
   ===================== */

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: ticker-scroll 20s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-card {
    width: 360px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.ticker-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.ticker-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================
   TRUSTED BY HEADING
   ===================== */

.trusted-heading {
    font-family: 'Switzer', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #0e0e0e;
    margin-bottom: 48px;
}

.trusted-heading .accent {
    color: #ffc478;
}

/* =====================
   CTA BANNER SECTION
   ===================== */

.cta-banner {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-banner__ghost {
    position: absolute;
    font-family: 'Switzer', sans-serif;
    font-size: 15vw;
    font-weight: 800;
    color: #ffc478;
    opacity: 0.25;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.cta-banner__ghost--left {
    left: 0;
}

.cta-banner__ghost--right {
    right: 0;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.cta-banner__heading {
    font-family: 'Switzer', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #0e0e0e;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* Mobile — stack ghost text top and bottom */
@media (max-width: 600px) {
    .cta-banner {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .cta-banner__ghost {
        position: relative;
        top: auto;
        transform: none;
        font-size: 22vw;
        opacity: 0.25;
        display: block;
        text-align: center;
        width: 100%;
        line-height: 1;
    }

    .cta-banner__ghost--left {
        left: auto;
        order: 1;
        padding-top: 0px;
    }

    .cta-banner__content {
        order: 2;
        padding: 32px 24px;
        gap: 20px;
    }

    .cta-banner__ghost--right {
        right: auto;
        order: 3;
        padding-bottom: 0px;
    }

    .cta-banner__heading {
        font-size: 28px;
    }
}

/* =====================
   ANIMATIONS
   ===================== */

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.anim-fade-up.is-visible,
.anim-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.anim-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.anim-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.anim-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.anim-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.anim-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; }
.anim-stagger.is-visible > *:nth-child(7) { transition-delay: 600ms; }

.anim-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   RESPONSIVE — TABLET (max 1024px)
   ===================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 24px !important;
    }

    .service-card--cta {
        grid-column: span 2;
        padding: 40px 24px;
    }

    .service-card--cta p {
        font-size: 26px;
    }

    .project-card {
        flex: 0 0 calc(50% - 12px);
    }

    .project-card__image {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================
   RESPONSIVE — MOBILE (max 600px)
   ===================== */

@media (max-width: 600px) {
    .section-pad {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .has-small-font-size {
        font-size: 13px !important;
    }

    .has-base-font-size {
        font-size: 15px !important;
    }

    .has-medium-font-size {
        font-size: 20px !important;
    }

    .has-large-font-size {
        font-size: 18px !important;
    }

    .has-xl-font-size {
        font-size: 22px !important;
    }

    .has-2-xl-font-size {
        font-size: 36px !important;
    }

    .has-3-xl-font-size {
        font-size: 36px !important;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-banner {
        font-size: 18px;
        padding: 12px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 32px 0 !important;
    }

    .service-card__image {
        aspect-ratio: 4/3;
    }

    .service-card--cta {
        grid-column: span 1;
        padding: 32px 0;
    }

    .service-card--cta p {
        font-size: 22px;
    }

    .service-card__title {
        font-size: 16px;
    }

    .service-card__label,
    .service-card__tag {
        font-size: 12px;
    }

    .project-card {
        flex: 0 0 85%;
    }

    .project-card__image {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tab {
        padding: 10px 16px;
        font-size: 11px;
    }

    .about-image .wp-block-cover {
        min-height: 200px !important;
    }



    .cta-banner__heading {
        font-size: 24px;
    }

    .cta-banner {
        padding: 60px 24px;
    }

    .trusted-heading {
        font-size: 24px;
    }
}

/* =====================
   REMOVE FOCUS OUTLINE
   ===================== */

a, button, input, select, textarea, *:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* =====================
   CONTACT PAGE
   ===================== */

.contact-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.contact-section__heading {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 600;
    color: #0e0e0e;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 60px 0;
}

.contact-section__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left col */
.contact-section__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-section__phrase {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #0e0e0e;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
}

.contact-section__subphrase {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6e6e6e;
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
}

.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #25d366;
    color: #ffffff;
    font-family: 'Switzer', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp-contact:hover {
    background-color: #1da851;
    color: #ffffff;
}

/* Right col */
.contact-section__details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-detail:first-child {
    padding-top: 0;
}

.contact-detail__label {
    font-family: 'Switzer', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #989898;
}

.contact-detail__value {
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #0e0e0e;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

a.contact-detail__value:hover {
    color: #ffc478;
}

.contact-detail__value + .contact-detail__value {
    margin-top: 2px;
}

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .contact-section__phrase {
        font-size: clamp(28px, 7vw, 40px);
    }
}


/* =====================
   FOOTER
   ===================== */

.jor-footer {
    background-color: #0e0e0e;
    padding: 80px 30px 32px;
    margin-top: 0;
}

.jor-footer__inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jor-footer__logo img {
    display: block;
    margin-bottom: 20px;
}

.jor-footer__tagline {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.jor-footer__col-label {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffc478;
    display: block;
    margin-bottom: 20px;
}

.jor-footer__nav ul,
.jor-footer__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jor-footer__nav a,
.jor-footer__contact a,
.jor-footer__contact li {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.jor-footer__nav a:hover,
.jor-footer__contact a:hover {
    color: #ffc478;
}

.jor-footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jor-footer__social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.jor-footer__social-links a:hover {
    color: #ffc478;
}

.jor-footer__bottom {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Switzer', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .jor-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .jor-footer {
        padding: 60px 16px 28px;
    }

    .jor-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .jor-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* =====================
   TOP RIBBON
   ===================== */

.jor-ribbon {
    width: 100%;
    background-color: #0e0e0e;
    padding: 8px 30px;
    z-index: 99998;
    position: relative;
}

.jor-ribbon__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jor-ribbon__item {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

a.jor-ribbon__item:hover {
    color: #ffc478;
}

.jor-ribbon__divider {
    color: rgba(255,255,255,0.25);
    font-size: 10px;
}

@media (max-width: 600px) {
    .jor-ribbon {
        padding: 8px 16px;
    }

    .jor-ribbon__inner {
        gap: 10px;
    }

    .jor-ribbon__item {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .jor-ribbon__hide-mobile {
        display: none;
    }
}

.nav-hide,
.wp-block-navigation-item.nav-hide,
.wp-block-navigation .wp-block-navigation-item.nav-hide {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-hide,
    .wp-block-navigation-item.nav-hide,
    .wp-block-navigation .wp-block-navigation-item.nav-hide {
        display: block !important;
    }
}


/* =====================
   VIDEO GRID
   ===================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.video-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #0e0e0e;
}

.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-card:hover .video-card__thumb img {
    transform: scale(1.03);
    opacity: 0.85;
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-card:hover .video-card__play {
    transform: scale(1.1);
}

.video-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-modal__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.88);
}

.video-modal__inner {
    position: relative;
    z-index: 2;
    width: 90vw;
    max-width: 1000px;
}

.video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Video grid responsive */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}