/* =========================================================
   HOME / HERO ANCHOR SCROLL
   Prevent fixed/sticky header from covering the slider
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}


/* =========================================================
   HERO HOME TARGET
   ========================================================= */

#home {
    scroll-margin-top: 0;
}
/* =========================================================
   TECH HYBR
   HOME SLIDER
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

.home-main,
.home-main *,
.home-main *::before,
.home-main *::after {
    box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--ink);
    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 430px;
    margin: 0 auto;
    background: var(--ink);
    overflow: hidden;
}


/* =========================================================
   SLIDES WRAPPER
   ========================================================= */

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* =========================================================
   SLIDE
   ========================================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    display: grid;
    grid-template-columns: 68% 32%;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(45px);

    background: var(--ink);

    /*
     * Smooth, premium slide movement.
     * 0.85s is slow enough to see but not sluggish.
     */
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.75s ease,
        visibility 0s linear 0.85s;

    overflow: hidden;
    border: none;

    will-change: transform, opacity;
}


/* =========================================================
   SLIDE ENTERING FROM RIGHT
   ========================================================= */

.hero-slide.slide-next {
    transform: translateX(45px);
}


/* =========================================================
   SLIDE ENTERING FROM LEFT
   ========================================================= */

.hero-slide.slide-prev {
    transform: translateX(-45px);
}


/* =========================================================
   ACTIVE SLIDE
   ========================================================= */

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);

    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.75s ease,
        visibility 0s linear 0s;

    z-index: 2;
}


/* =========================================================
   TEXT SIDE
   ========================================================= */

.hero-slide-content {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 45px 45px 45px 55px;

    background: var(--ink);
    border: none;
}


/* =========================================================
   META
   ========================================================= */

.hero-slide-meta {
    margin-bottom: 18px;

    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: var(--amber);

    text-transform: uppercase;
}


/* =========================================================
   HEADING
   ========================================================= */

.hero-slide-content h1 {
    max-width: 620px;

    margin: 0;

    font-family: var(--display);

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;

    line-height: 0.98;
    letter-spacing: -2.5px;

    color: var(--paper);
}


.hero-slide-content h1 span {
    display: block;
    color: var(--amber);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-slide-description {
    max-width: 510px;

    margin: 23px 0 0;

    font-family: var(--body);
    font-size: 14px;
    line-height: 1.6;

    color: var(--graphite);
}


/* =========================================================
   BUTTON
   ========================================================= */

.hero-slide-actions {
    margin-top: 27px;
}


.hero-slide-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-width: 165px;

    padding: 13px 16px;

    background: var(--amber);
    color: var(--ink);

    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    border: none;
    border-radius: 2px;

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


.hero-slide-button:hover {
    background: var(--amber-soft);

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.15);
}


.hero-slide-button:active {
    transform: translateY(0) scale(0.98);
}


/* =========================================================
   IMAGE SIDE
   ========================================================= */

.hero-slide-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: var(--ink);

    border: none;
}


/* =========================================================
   ACTUAL IMAGE
   ========================================================= */

.hero-slide-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: fill;
    object-position: center center;

    border: none;

    transform: scale(1);

    transition:
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


/* =========================================================
   ACTIVE IMAGE — VERY SLOW ZOOM
   ========================================================= */

.hero-slide.active .hero-slide-image img {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE GRADIENT EFFECT

   DARK
      ↓
   DARK / GREY
      ↓
   LIGHT
      ↓
   ACTUAL PHOTO
   ========================================================= */

.hero-slide-image::before {
    content: "";

    position: absolute;

    z-index: 3;

    top: 0;
    bottom: 0;
    left: 0;

    width: 55%;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(11, 14, 19, 0.95) 0%,
        rgba(11, 14, 19, 0.78) 15%,
        rgba(11, 14, 19, 0.55) 32%,
        rgba(11, 14, 19, 0.32) 50%,
        rgba(11, 14, 19, 0.14) 70%,
        rgba(11, 14, 19, 0) 100%
    );
}


/* =========================================================
   IMAGE NUMBER
   ========================================================= */

.slide-image-number {
    position: absolute;

    z-index: 5;

    left: 18px;
    bottom: 18px;

    padding: 5px 8px;

    background: rgba(11, 14, 19, 0.65);

    color: var(--paper);

    font-family: var(--mono);
    font-size: 9px;

    letter-spacing: 1px;

    border: none;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.hero-slider-controls {
    position: absolute;

    z-index: 10;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 0 25px 13px;

    pointer-events: none;
}


/* =========================================================
   COUNTER
   ========================================================= */

.hero-slider-counter {
    display: flex;

    align-items: center;

    gap: 9px;

    font-family: var(--mono);
    font-size: 9px;

    letter-spacing: 1px;
}


.hero-current {
    color: var(--amber);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.hero-total {
    color: var(--paper);
}


.hero-counter-line {
    width: 24px;
    height: 1px;

    background: var(--graphite-dark);
}


/* =========================================================
   DOTS
   ========================================================= */

.hero-slider-dots {
    display: flex;

    align-items: center;

    gap: 7px;

    pointer-events: auto;
}


.hero-dot {
    width: 20px;
    height: 3px;

    padding: 0;

    border: 0;

    background: var(--graphite-dark);

    cursor: pointer;

    transition:
        width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


.hero-dot:hover {
    opacity: 0.8;
    transform: scaleY(1.4);
}


.hero-dot.active {
    width: 34px;

    background: var(--amber);

    transform: scaleY(1.15);
}


/* =========================================================
   ARROWS
   ========================================================= */

.hero-slider-arrows {
    display: flex;

    gap: 6px;

    pointer-events: auto;
}


.hero-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0;

    background: transparent;

    color: var(--paper);

    border: 1px solid rgba(243, 239, 230, 0.12);

    border-radius: 2px;

    cursor: pointer;

    font-size: 15px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   ARROW HOVER
   ========================================================= */

.hero-arrow:hover {
    background: var(--amber);

    color: var(--ink);

    border-color: var(--amber);
}


/* =========================================================
   ARROW PRESS
   ========================================================= */

.hero-arrow:active {
    transform: scale(0.92);
}


/* =========================================================
   NEXT ARROW
   ========================================================= */

.hero-next:hover {
    transform: translateX(3px);
}


/* =========================================================
   PREVIOUS ARROW
   ========================================================= */

.hero-prev:hover {
    transform: translateX(-3px);
}


/* =========================================================
   PROGRESS
   ========================================================= */

.hero-progress {
    position: absolute;

    z-index: 20;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: rgba(243, 239, 230, 0.08);

    overflow: hidden;
}


.hero-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--amber);

    /*
     * Matches JavaScript:
     * const slideDuration = 5500;
     */
    transition:
        width 5.5s linear;

    will-change: width;
}


/* =========================================================
   SMOOTH FADE + SLIDE SUPPORT
   ========================================================= */

.hero-slide:not(.active) {
    z-index: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero-slider-container {
        height: 410px;
    }

    .hero-slide {
        grid-template-columns: 64% 36%;
    }

    .hero-slide-content {
        padding: 40px 35px 40px 40px;
    }

    .hero-slide-content h1 {
        font-size: clamp(38px, 6vw, 58px);
    }

    .hero-slide-description {
        max-width: 450px;
        font-size: 13px;
    }

    .hero-slider-controls {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero-slider-container {
        height: auto;
        min-height: 600px;
    }

    .hero-slides {
        min-height: 600px;
    }

    .hero-slide {
        grid-template-columns: 1fr;

        grid-template-rows:
            minmax(300px, 52%)
            minmax(300px, 48%);

        min-height: 600px;

        transform: translateX(30px);
    }

    .hero-slide.slide-next {
        transform: translateX(30px);
    }

    .hero-slide.slide-prev {
        transform: translateX(-30px);
    }

    .hero-slide-content {
        order: 2;

        justify-content: center;

        height: auto;
        min-height: 300px;

        padding: 35px 25px 70px;
    }

    .hero-slide-image {
        order: 1;

        height: 100%;
        min-height: 300px;
    }

    .hero-slide-image::before {
        top: auto;
        bottom: 0;

        left: 0;

        width: 100%;
        height: 45%;

        background: linear-gradient(
            0deg,
            rgba(11, 14, 19, 0.90) 0%,
            rgba(11, 14, 19, 0.55) 35%,
            rgba(11, 14, 19, 0.20) 70%,
            rgba(11, 14, 19, 0) 100%
        );
    }

    .hero-slide-content h1 {
        max-width: 100%;

        font-size: clamp(36px, 10vw, 52px);

        letter-spacing: -1.8px;
    }

    .hero-slide-description {
        max-width: 100%;

        margin-top: 18px;

        font-size: 13px;
        line-height: 1.55;
    }

    .hero-slide-actions {
        margin-top: 22px;
    }

    .hero-slide-button {
        min-width: 150px;

        gap: 25px;

        padding: 12px 14px;

        font-size: 12px;
    }

    .hero-slider-controls {
        padding: 0 15px 10px;

        gap: 10px;
    }

    .hero-slider-counter {
        font-size: 8px;
    }

    .hero-counter-line {
        width: 18px;
    }

    .hero-slider-dots {
        gap: 5px;
    }

    .hero-dot {
        width: 15px;
        height: 3px;
    }

    .hero-dot.active {
        width: 27px;
    }

    .hero-slider-arrows {
        gap: 4px;
    }

    .hero-arrow {
        width: 32px;
        height: 32px;

        font-size: 13px;
    }

    .slide-image-number {
        left: 12px;
        bottom: 12px;

        font-size: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-slider-container,
    .hero-slides,
    .hero-slide {
        min-height: 560px;
    }

    .hero-slider-container {
        height: 560px;
    }

    .hero-slide {
        grid-template-rows:
            270px
            290px;
    }

    .hero-slide-content {
        min-height: 290px;

        padding:
            25px
            20px
            65px;
    }

    .hero-slide-meta {
        margin-bottom: 12px;

        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .hero-slide-content h1 {
        font-size: clamp(32px, 10vw, 44px);

        line-height: 1;

        letter-spacing: -1.5px;
    }

    .hero-slide-description {
        margin-top: 15px;

        font-size: 12px;

        line-height: 1.5;
    }

    .hero-slide-actions {
        margin-top: 18px;
    }

    .hero-slide-button {
        min-width: 140px;

        gap: 20px;

        padding: 11px 13px;

        font-size: 11px;
    }

    .hero-slider-controls {
        padding:
            0
            12px
            9px;
    }

    .hero-slider-counter {
        gap: 6px;
        font-size: 7px;
    }

    .hero-counter-line {
        width: 15px;
    }

    .hero-dot {
        width: 12px;
        height: 2px;
    }

    .hero-dot.active {
        width: 23px;
    }

    .hero-arrow {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .hero-slider-container,
    .hero-slides,
    .hero-slide {
        min-height: 520px;
    }

    .hero-slider-container {
        height: 520px;
    }

    .hero-slide {
        grid-template-rows:
            245px
            275px;
    }

    .hero-slide-content {
        min-height: 275px;

        padding:
            22px
            17px
            60px;
    }

    .hero-slide-content h1 {
        font-size: 30px;
    }

    .hero-slide-description {
        font-size: 11px;
    }

    .hero-slider-controls {
        padding-left: 9px;
        padding-right: 9px;
    }

    .hero-slider-dots {
        gap: 3px;
    }

    .hero-arrow {
        width: 28px;
        height: 28px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-slide.active,
    .hero-slide-image img,
    .hero-slide-button,
    .hero-dot,
    .hero-arrow,
    .hero-progress span {
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   HOME INTRODUCTION
========================================================= */

.home-intro {
    position: relative;

    width: 100%;

    padding: 70px 6vw 80px;

    background: var(--paper);

    color: var(--ink);

    overflow: hidden;
}


/* =========================================================
   TOP LINE
========================================================= */

.home-intro-top {
    display: flex;

    align-items: center;

    width: 100%;

    margin-bottom: 38px;
}

.home-intro-diamond {
    display: block;

    margin-right: 16px;

    color: var(--amber);

    font-size: 13px;

    line-height: 1;
}

.home-intro-line {
    display: block;

    flex: 1;

    height: 1px;

    background: rgba(11, 14, 19, 0.16);
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.home-intro-grid {
    display: grid;

    grid-template-columns: 42% 58%;

    gap: 50px;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   LEFT HEADING
========================================================= */

.home-intro-heading {
    padding-right: 30px;
}

.home-intro-label {
    margin: 0 0 22px;

    font-family: var(--mono);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--amber);
}

.home-intro-heading h2 {
    margin: 0;

    font-family: var(--display);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--ink);
}

.home-intro-heading h2 span {
    color: var(--teal);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.home-intro-content {
    max-width: 720px;
}

.home-intro-content p {
    margin: 0 0 25px;

    font-family: var(--body);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;

    color: var(--graphite-dark);
}

.home-intro-content p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   DIVIDER
========================================================= */

.home-intro-divider {
    width: 100%;

    height: 1px;

    margin: 35px 0 27px;

    background: rgba(11, 14, 19, 0.16);
}


/* =========================================================
   TAGLINE
========================================================= */

.home-intro-tagline {
    font-family: var(--mono) !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    line-height: 1.6 !important;

    color: #b87516 !important;

    letter-spacing: 0.2px;
}

/* =========================================================
   TECH HYBR — HERO SLIDER
   RESPONSIVE CSS
   ========================================================= */

/* ---------------------------------------------------------
   SLIDER WRAPPER
   --------------------------------------------------------- */

.hero-slider {
    width: 100%;
    overflow: hidden;
    background: var(--ink);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}


/* ---------------------------------------------------------
   INDIVIDUAL SLIDE
   --------------------------------------------------------- */

.hero-slide {
    position: absolute;
    inset: 0;

    display: grid;

    /* TEXT 65% / IMAGE 35% */
    grid-template-columns: 65% 35%;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateX(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;

    background: var(--ink);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}


/* ---------------------------------------------------------
   TEXT AREA
   --------------------------------------------------------- */

.hero-slide-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 55px 7vw;

    background: var(--ink);
}

.hero-slide-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 20px;

    color: var(--amber);

    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-slide-label::before {
    content: "";

    width: 30px;
    height: 1px;

    background: var(--amber);
}


.hero-slide-content h1 {
    margin: 0;

    max-width: 700px;

    color: var(--paper);

    font-family: var(--display);
    font-size: clamp(48px, 5.2vw, 78px);
    font-weight: 600;

    line-height: 0.98;
    letter-spacing: -3px;
}

.hero-slide-content h1 span {
    display: block;
    color: var(--amber);
}


.hero-slide-description {
    max-width: 650px;

    margin: 25px 0 0;

    color: var(--graphite);

    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.hero-slide-actions {
    margin-top: 28px;
}

.hero-slide-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-width: 165px;

    padding: 14px 18px;

    background: var(--amber);
    color: var(--ink);

    border: 1px solid var(--amber);

    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hero-slide-button:hover {
    background: transparent;
    color: var(--amber);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   IMAGE AREA
   --------------------------------------------------------- */

.hero-slide-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: var(--paper-dim);
}

.hero-slide-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.01);

    transition:
        transform 1.2s ease;
}

.hero-slide.active .hero-slide-image img {
    transform: scale(1);
}


/* ---------------------------------------------------------
   IMAGE + TEXT BLENDING
   LIGHT GRADIENT
   --------------------------------------------------------- */

.hero-slide-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: -1px;

    width: 55%;
    height: 100%;

    z-index: 2;

    pointer-events: none;

    background: linear-gradient(90deg,
            var(--ink) 0%,
            rgba(11, 14, 19, 0.96) 12%,
            rgba(11, 14, 19, 0.75) 32%,
            rgba(11, 14, 19, 0.35) 60%,
            rgba(11, 14, 19, 0) 100%);
}


/* ---------------------------------------------------------
   COUNTER
   --------------------------------------------------------- */

.hero-slider-counter {
    position: absolute;

    left: 65%;
    bottom: 22px;

    z-index: 10;

    padding: 6px 10px;

    color: var(--paper);

    background: rgba(11, 14, 19, 0.75);

    border: 1px solid rgba(243, 239, 230, 0.12);

    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
}


/* ---------------------------------------------------------
   SLIDER CONTROLS
   --------------------------------------------------------- */

.hero-slider-controls {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 12px 20px;

    pointer-events: none;
}

.hero-slider-controls>* {
    pointer-events: auto;
}


/* ---------------------------------------------------------
   ARROWS
   --------------------------------------------------------- */

.hero-slider-arrows {
    display: flex;
    gap: 7px;
}

.hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(243, 239, 230, 0.16);

    background: rgba(11, 14, 19, 0.35);

    color: var(--paper);

    cursor: pointer;

    font-size: 16px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.hero-arrow:hover {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
}


/* ---------------------------------------------------------
   SLIDER INDICATORS
   --------------------------------------------------------- */

.hero-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 27px;

    display: flex;
    gap: 8px;

    transform: translateX(-50%);
}

.hero-slider-dot {
    width: 20px;
    height: 3px;

    border: 0;

    background: var(--graphite-dark);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.hero-slider-dot.active {
    width: 35px;
    background: var(--amber);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-slider-container {
        height: 460px;
    }

    .hero-slide {
        grid-template-columns: 62% 38%;
    }

    .hero-slide-content {
        padding: 45px 5vw;
    }

    .hero-slide-content h1 {
        font-size: clamp(44px, 5.5vw, 65px);
    }

    .hero-slide-description {
        max-width: 550px;
    }

    .hero-slider-counter {
        left: 62%;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero-slider-container {
        height: 430px;
    }

    .hero-slide {
        grid-template-columns: 60% 40%;
    }

    .hero-slide-content {
        padding: 40px;
    }

    .hero-slide-content h1 {
        font-size: clamp(40px, 6vw, 58px);
        letter-spacing: -2px;
    }

    .hero-slide-description {
        margin-top: 20px;
        font-size: 14px;
    }

    .hero-slide-actions {
        margin-top: 22px;
    }

    .hero-slider-counter {
        left: 60%;
        bottom: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero-slider {
        width: 100%;
    }

    .hero-slider-container {
        width: 100%;
        height: auto;
        min-height: 0;

        overflow: hidden;
    }

    .hero-slides {
        width: 100%;
        height: auto;
        min-height: 0;
    }


    /* ---------------------------------------------
       MOBILE SLIDE
       --------------------------------------------- */

    .hero-slide {
        position: absolute;

        inset: 0;

        display: flex;
        flex-direction: column;

        width: 100%;
        height: auto;

        min-height: 0;

        opacity: 0;
        visibility: hidden;

        transform: translateX(25px);

        transition:
            opacity 0.6s ease,
            transform 0.6s ease,
            visibility 0.6s ease;
    }

    .hero-slide.active {
        position: relative;

        opacity: 1;
        visibility: visible;

        transform: translateX(0);
    }


    /* ---------------------------------------------
       TEXT
       --------------------------------------------- */

    .hero-slide-content {

        order: 1;

        width: 100%;
        height: auto;

        min-height: 300px;

        padding: 35px 24px 38px;

        justify-content: center;
    }

    .hero-slide-label {
        margin-bottom: 17px;

        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .hero-slide-label::before {
        width: 24px;
    }

    .hero-slide-content h1 {

        max-width: 100%;

        font-size: clamp(38px, 10vw, 52px);

        line-height: 0.98;

        letter-spacing: -2px;
    }

    .hero-slide-description {

        max-width: 100%;

        margin-top: 18px;

        font-size: 13px;
        line-height: 1.6;
    }

    .hero-slide-actions {
        margin-top: 22px;
    }

    .hero-slide-button {
        min-width: 155px;

        padding: 13px 16px;

        font-size: 12px;
    }


    /* ---------------------------------------------
       MOBILE IMAGE
       
       IMPORTANT:
       Increased height so the portrait has
       enough space.
       --------------------------------------------- */

    .hero-slide-image {

        order: 2;

        width: 100%;

        height: 320px;
        min-height: 320px;
        max-height: 320px;

        overflow: hidden;
    }

    .hero-slide-image img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
           Change this if you want the person
           higher/lower in the image.
        */
        object-position: center 25%;
    }


    /* ---------------------------------------------
       MOBILE IMAGE BLEND
       --------------------------------------------- */

    .hero-slide-image::before {

        top: 0;
        left: 0;

        width: 100%;
        height: 45%;

        background:
            linear-gradient(180deg,
                var(--ink) 0%,
                rgba(11, 14, 19, 0.85) 18%,
                rgba(11, 14, 19, 0.45) 42%,
                rgba(11, 14, 19, 0.12) 70%,
                rgba(11, 14, 19, 0) 100%);
    }


    /* ---------------------------------------------
       COUNTER
       --------------------------------------------- */

    .hero-slider-counter {

        left: 15px;
        bottom: 68px;

        padding: 5px 8px;

        font-size: 9px;
    }


    /* ---------------------------------------------
       CONTROLS
       --------------------------------------------- */

    .hero-slider-controls {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        min-height: 54px;

        padding: 9px 14px;

        background: var(--ink);

        justify-content: flex-end;
    }


    .hero-slider-dots {

        left: 15px;
        bottom: auto;

        transform: none;

        position: absolute;
    }

    .hero-slider-dot {

        width: 22px;
        height: 3px;
    }

    .hero-slider-dot.active {
        width: 34px;
    }


    .hero-slider-arrows {
        gap: 6px;
    }

    .hero-arrow {

        width: 34px;
        height: 34px;

        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-slide-content {

        min-height: 285px;

        padding: 30px 18px 32px;
    }

    .hero-slide-content h1 {

        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .hero-slide-description {

        font-size: 12.5px;

        line-height: 1.55;
    }

    .hero-slide-actions {
        margin-top: 19px;
    }

    /*
       Keep image large enough for portrait.
    */

    .hero-slide-image {

        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }

    .hero-slide-image img {

        object-position: center 22%;
    }

    .hero-slider-counter {

        left: 12px;
        bottom: 63px;
    }

    .hero-slider-controls {

        min-height: 50px;

        padding: 8px 12px;
    }

    .hero-arrow {

        width: 32px;
        height: 32px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .hero-slide-content {

        min-height: 275px;

        padding: 27px 16px 30px;
    }

    .hero-slide-content h1 {

        font-size: 35px;

        letter-spacing: -1.2px;
    }

    .hero-slide-description {

        font-size: 12px;
    }

    .hero-slide-image {

        height: 285px;
        min-height: 285px;
        max-height: 285px;
    }
}

/* =========================================================
   TABLET — 900px
   ========================================================= */

@media (max-width: 900px) {

    .home-intro {
        padding: 65px 5vw 75px;
    }

    .home-intro-grid {
        gap: 40px;
    }

    .home-intro-heading {
        padding-right: 0;
    }

    .home-intro-heading h2 {
        font-size: clamp(38px, 6vw, 52px);
    }

    .home-intro-content p {
        font-size: 14px;
    }

    .home-intro-divider {
        margin: 30px 0 23px;
    }

    .home-intro-tagline {
        font-size: 12px !important;
    }
}


/* =========================================================
   MOBILE — 700px
   ========================================================= */

@media (max-width: 700px) {

    .home-intro {
        padding: 55px 22px 65px;
    }

    .home-intro-top {
        margin-bottom: 35px;
    }

    .home-intro-grid {

        display: block;

        width: 100%;
    }


    /* LEFT */

    .home-intro-heading {

        padding: 0;

        margin-bottom: 35px;
    }

    .home-intro-label {

        margin-bottom: 17px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .home-intro-heading h2 {

        font-size: clamp(38px, 11vw, 50px);

        line-height: 1.02;

        letter-spacing: -1.8px;
    }


    /* RIGHT */

    .home-intro-content {

        width: 100%;

        max-width: none;
    }

    .home-intro-content p {

        margin-bottom: 21px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* DIVIDER */

    .home-intro-divider {

        margin: 28px 0 22px;
    }


    /* TAGLINE */

    .home-intro-tagline {

        font-size: 11px !important;

        line-height: 1.7 !important;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
   ========================================================= */

@media (max-width: 480px) {

    .home-intro {

        padding: 48px 18px 55px;
    }

    .home-intro-top {

        margin-bottom: 30px;
    }

    .home-intro-heading {

        margin-bottom: 30px;
    }

    .home-intro-label {

        margin-bottom: 15px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }

    .home-intro-heading h2 {

        font-size: 38px;

        line-height: 1.03;

        letter-spacing: -1.2px;
    }

    .home-intro-content p {

        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 19px;
    }

    .home-intro-divider {

        margin: 25px 0 20px;
    }

    .home-intro-tagline {

        font-size: 10px !important;

        line-height: 1.7 !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE — 380px
   ========================================================= */

@media (max-width: 380px) {

    .home-intro {

        padding: 42px 16px 48px;
    }

    .home-intro-heading h2 {

        font-size: 35px;

        letter-spacing: -1px;
    }

    .home-intro-content p {

        font-size: 12.5px;
    }

    .home-intro-tagline {

        font-size: 9.5px !important;
    }
}

/* =========================================================
   FOUNDER SECTION
========================================================= */

.founder-section {
    position: relative;

    width: 100%;

    background: var(--paper);

    color: var(--ink);

    padding: 90px 6vw 100px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.founder-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.founder-section-label {
    display: flex;

    align-items: center;

    width: 100%;

    margin-bottom: 42px;
}

.founder-section-label::after {
    content: "";

    flex: 1;

    height: 1px;

    margin-left: 22px;

    background: rgba(11, 14, 19, 0.15);
}

.founder-section-label span {
    font-family: var(--mono);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--graphite-dark);
    text-transform: uppercase;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.founder-layout {
    display: grid;
    grid-template-columns: 373px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}


/* =========================================================
   LEFT PROFILE
========================================================= */

.founder-profile {
    width: 100%;
}


/* =========================================================
   IMAGE
========================================================= */

.founder-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: var(--paper-dim);
}

.founder-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.founder-image-wrap:hover .founder-image {
    transform: scale(1.025);
}


/* =========================================================
   PROFILE CAPTION
========================================================= */

.founder-caption {
    padding-top: 14px;
}

.founder-caption h3 {
    margin: 0 0 5px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.founder-caption p {
    margin: 0 0 6px;
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--graphite-dark);
}

.founder-specialties {
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: var(--graphite);
    text-transform: none;
}

.founder-specialties span {
    margin: 0 4px;

    color: var(--amber);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.founder-content {
    min-width: 0;

    max-width: 850px;
}


/* =========================================================
   INTRO
========================================================= */

.founder-intro {
    margin-bottom: 24px;
}

.founder-intro p {
    margin: 0;
    max-width: 760px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--ink);
}


/* =========================================================
   STORY
========================================================= */

.founder-story {
    max-width: 800px;
}

.founder-story p {
    margin: 0 0 18px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--graphite-dark);
}

.founder-story p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TIMELINE
========================================================= */

.founder-timeline {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(100px, 1fr));

    gap: 28px 25px;

    margin-top: 38px;

    padding-top: 20px;

    border-top: 1px solid rgba(11, 14, 19, 0.16);
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.timeline-item {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.timeline-year {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.5px;
}

.timeline-title {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.45;
    color: var(--graphite-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .founder-section {
        padding: 75px 5vw 80px;
    }

    .founder-layout {
        grid-template-columns: 250px minmax(0, 1fr);

        gap: 45px;
    }

    .founder-intro p {
        font-size: 14px;
    }

    .founder-story p {
        font-size: 11.5px;
    }

    .founder-timeline {
        grid-template-columns:
            repeat(3, minmax(100px, 1fr));

        gap: 25px 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .founder-section {
        padding: 60px 22px 65px;
    }

    .founder-section-label {
        margin-bottom: 30px;
    }

    .founder-layout {
        display: flex;

        flex-direction: column;

        gap: 35px;
    }


    /* IMAGE */

    .founder-profile {
        width: 100%;

        max-width: 280px;

        margin: 0 auto;
    }

    .founder-image-wrap {
        aspect-ratio: 4 / 5;
    }


    /* CONTENT */

    .founder-content {
        width: 100%;
    }

    .founder-intro {
        margin-bottom: 22px;
    }

    .founder-intro p {
        font-size: 15px;

        line-height: 1.6;
    }

    .founder-story p {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 18px;
    }


    /* TIMELINE */

    .founder-timeline {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px 18px;

        margin-top: 32px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .founder-section {
        padding: 50px 18px 55px;
    }

    .founder-section-label span {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .founder-profile {
        max-width: 240px;
    }

    .founder-intro p {
        font-size: 14px;
    }

    .founder-story p {
        font-size: 12px;

        line-height: 1.7;
    }

    .founder-timeline {
        grid-template-columns: 1fr 1fr;

        gap: 20px 15px;
    }

    .timeline-title {
        font-size: 8.5px;
    }
}

/* =========================================================
   WHAT HE DOES — LIGHT THEME
========================================================= */

.work-section {
    position: relative;

    width: 100%;

    background: var(--paper);

    color: var(--ink);

    padding: 100px 6vw 110px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.work-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.work-header {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 340px;

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;
}


/* =========================================================
   LABEL
========================================================= */

.work-label {
    display: block;

    margin-bottom: 20px;

    font-family: var(--mono);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color: var(--amber);

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.work-heading h2 {
    margin: 0;

    font-family: var(--display);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -2.5px;

    color: var(--ink);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.work-intro {
    max-width: 340px;

    padding-bottom: 5px;

    font-family: var(--body);

    font-size: 16px;

    line-height: 1.65;

    color: var(--graphite-dark);
}


/* =========================================================
   GRID
========================================================= */

.work-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    border: 1px solid rgba(11, 14, 19, 0.18);
}


/* =========================================================
   CARD
========================================================= */

.work-card {
    position: relative;

    min-height: 350px;

    padding: 40px 42px 45px;

    background: var(--paper);

    border-right: 1px solid rgba(11, 14, 19, 0.15);

    border-bottom: 1px solid rgba(11, 14, 19, 0.15);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* Remove right border from right column */

.work-card:nth-child(2n) {
    border-right: none;
}


/* Remove bottom border from last row */

.work-card:nth-child(3),
.work-card:nth-child(4) {
    border-bottom: none;
}


/* =========================================================
   CARD HOVER
========================================================= */

.work-card:hover {
    background: #eee9dc;

    z-index: 2;
}


/* =========================================================
   TOP META
========================================================= */

.work-card-top {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 28px;
}

.work-number {
    font-family: var(--mono);

    font-size: 11px;

    font-weight: 500;

    color: var(--teal);

    letter-spacing: 0.5px;
}

.work-category {
    font-family: var(--mono);

    font-size: 11px;

    font-weight: 500;

    color: var(--teal);

    letter-spacing: 0.5px;
}

.work-number::after {
    content: " /";

    margin-left: 7px;

    color: var(--graphite);
}


/* =========================================================
   CARD HEADING
========================================================= */

.work-card h3 {
    max-width: 540px;

    margin: 0 0 22px;

    font-family: var(--display);

    font-size: 25px;

    font-weight: 600;

    line-height: 1.25;

    letter-spacing: -0.7px;

    color: var(--ink);
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.work-card p {
    max-width: 560px;

    margin: 0;

    font-family: var(--body);

    font-size: 15px;

    line-height: 1.7;

    color: var(--graphite-dark);
}


/* =========================================================
   ARROW
========================================================= */

.work-arrow {
    position: absolute;

    right: 38px;

    bottom: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border: 1px solid rgba(11, 14, 19, 0.2);

    font-family: var(--body);

    font-size: 17px;

    color: var(--ink);

    opacity: 0;

    transform: translate(-8px, 8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.work-card:hover .work-arrow {
    opacity: 1;

    transform: translate(0, 0);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .work-section {
        padding: 85px 5vw 95px;
    }

    .work-header {
        grid-template-columns: minmax(0, 1fr) 280px;

        gap: 40px;

        margin-bottom: 45px;
    }

    .work-heading h2 {
        font-size: clamp(40px, 5vw, 58px);
    }

    .work-card {
        min-height: 330px;

        padding: 35px;
    }

    .work-card h3 {
        font-size: 22px;
    }

    .work-card p {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .work-section {
        padding: 75px 28px 80px;
    }

    .work-header {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-bottom: 38px;
    }

    .work-intro {
        max-width: 550px;

        font-size: 15px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card,
    .work-card:nth-child(2n),
    .work-card:nth-child(3),
    .work-card:nth-child(4) {
        border-right: none;

        border-bottom: 1px solid rgba(11, 14, 19, 0.15);
    }

    .work-card:last-child {
        border-bottom: none;
    }

    .work-card {
        min-height: auto;

        padding: 38px 32px 70px;
    }

    .work-card h3 {
        max-width: 650px;

        font-size: 24px;
    }

    .work-card p {
        max-width: 650px;

        font-size: 14px;
    }

    .work-arrow {
        right: 30px;

        bottom: 28px;

        opacity: 1;

        transform: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .work-section {
        padding: 60px 20px 65px;
    }

    .work-label {
        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: 2.3px;
    }

    .work-heading h2 {
        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.08;

        letter-spacing: -1.7px;
    }

    .work-intro {
        font-size: 14px;

        line-height: 1.65;
    }

    .work-grid {
        width: 100%;
    }

    .work-card {
        padding: 30px 24px 65px;
    }

    .work-card-top {
        margin-bottom: 22px;
    }

    .work-number,
    .work-category {
        font-size: 9px;
    }

    .work-card h3 {
        margin-bottom: 18px;

        font-size: 21px;

        line-height: 1.3;

        letter-spacing: -0.4px;
    }

    .work-card p {
        font-size: 13px;

        line-height: 1.7;
    }

    .work-arrow {
        right: 22px;

        bottom: 22px;

        width: 34px;

        height: 34px;

        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .work-section {
        padding: 50px 16px 55px;
    }

    .work-heading h2 {
        font-size: 34px;

        letter-spacing: -1.3px;
    }

    .work-card {
        padding: 28px 20px 62px;
    }

    .work-card h3 {
        font-size: 19px;
    }

    .work-card p {
        font-size: 12px;
    }
}

/* =========================================================
   MISSION & VISION
   TECH HYBR — LIGHT THEME
========================================================= */

.mission-vision-section {
    position: relative;

    width: 100%;

    background: var(--paper);

    color: var(--ink);

    padding: 105px 6vw 115px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.mission-vision-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   TWO COLUMN GRID
========================================================= */

.mission-vision-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.mission-vision-card {
    min-width: 0;

    padding: 10px 60px 15px 0;
}


/* =========================================================
   RIGHT CARD
========================================================= */

.mission-vision-card+.mission-vision-card {
    padding-left: 60px;

    padding-right: 0;

    border-left: 1px solid rgba(11, 14, 19, 0.18);
}


/* =========================================================
   LABEL
========================================================= */

.mv-label {
    display: block;

    margin-bottom: 22px;

    font-family: var(--mono);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    color: var(--amber);

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.mission-vision-card h2 {
    max-width: 590px;

    margin: 0 0 25px;

    font-family: var(--display);

    font-size: clamp(30px, 3vw, 43px);

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1.3px;

    color: var(--ink);
}


/* =========================================================
   ACCENT HEADING
========================================================= */

.mission-vision-card h2 span {
    color: var(--amber);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.mission-vision-card p {
    max-width: 570px;

    margin: 0;

    font-family: var(--body);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: var(--graphite-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .mission-vision-section {
        padding: 85px 5vw 95px;
    }

    .mission-vision-card {
        padding-right: 40px;
    }

    .mission-vision-card+.mission-vision-card {
        padding-left: 40px;
    }

    .mission-vision-card h2 {
        font-size: clamp(27px, 3.5vw, 36px);

        letter-spacing: -1px;
    }

    .mission-vision-card p {
        font-size: 14px;

        line-height: 1.7;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .mission-vision-section {
        padding: 65px 22px 70px;
    }


    /* Stack Mission + Vision */

    .mission-vision-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Cards */

    .mission-vision-card,
    .mission-vision-card+.mission-vision-card {
        padding: 0 0 42px;

        border-left: none;
    }


    /* Add separator between Mission and Vision */

    .mission-vision-card+.mission-vision-card {
        padding-top: 42px;

        border-top: 1px solid rgba(11, 14, 19, 0.16);
    }


    .mv-label {
        margin-bottom: 17px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .mission-vision-card h2 {
        max-width: 650px;

        margin-bottom: 19px;

        font-size: clamp(28px, 8vw, 38px);

        line-height: 1.15;

        letter-spacing: -1px;
    }


    .mission-vision-card p {
        max-width: 650px;

        font-size: 14px;

        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .mission-vision-section {
        padding: 55px 18px 60px;
    }

    .mission-vision-card {
        padding-bottom: 35px;
    }

    .mission-vision-card+.mission-vision-card {
        padding-top: 35px;
    }

    .mission-vision-card h2 {
        font-size: 27px;

        letter-spacing: -0.7px;
    }

    .mission-vision-card p {
        font-size: 13px;

        line-height: 1.75;
    }
}

/* =========================================================
   TECH HYBR
   ABOUT US SECTION
   LIGHT THEME
========================================================= */

.about-section {
    width: 100%;
    background: var(--paper);
    color: var(--ink);

    padding: 110px 6vw 125px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    max-width: 1000px;
}


/* =========================================================
   LABEL
========================================================= */

.about-label,
.about-card-label {
    display: block;

    font-family: var(--mono);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1.4;

    color: var(--amber);

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.about-intro h2 {
    max-width: 930px;

    margin: 25px 0 25px;

    font-family: var(--display);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1.5px;

    color: var(--ink);
}


/* =========================================================
   INTRO DESCRIPTION
========================================================= */

.about-lead {
    max-width: 900px;

    margin: 0;

    font-family: var(--body);

    font-size: 17px;

    font-weight: 400;

    line-height: 1.75;

    color: var(--graphite-dark);
}


/* =========================================================
   THREE COLUMN AREA
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    margin-top: 90px;

    border-top: 1px solid rgba(11, 14, 19, 0.16);
}


/* =========================================================
   ABOUT CARD
========================================================= */

.about-card {
    min-width: 0;

    padding: 35px 45px 10px 0;
}


/* =========================================================
   MIDDLE + RIGHT COLUMNS
========================================================= */

.about-card+.about-card {
    padding-left: 45px;

    border-left: 1px solid rgba(11, 14, 19, 0.14);
}


/* =========================================================
   CARD LABEL
========================================================= */

.about-card-label {
    margin-bottom: 20px;

    font-size: 10px;
}


/* =========================================================
   CARD TEXT
========================================================= */

.about-card p {
    margin: 0;

    font-family: var(--body);

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;

    color: var(--graphite-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-section {
        padding: 85px 5vw 100px;
    }

    .about-intro h2 {
        font-size: clamp(32px, 5vw, 45px);

        letter-spacing: -1.2px;
    }

    .about-lead {
        font-size: 15px;

        line-height: 1.7;
    }

    .about-grid {
        margin-top: 70px;
    }

    .about-card {
        padding-right: 28px;
    }

    .about-card+.about-card {
        padding-left: 28px;
    }

    .about-card p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .about-section {
        padding: 70px 22px 80px;
    }


    /* Intro */

    .about-intro h2 {
        margin-top: 20px;
        margin-bottom: 20px;

        font-size: clamp(29px, 8vw, 40px);

        line-height: 1.16;

        letter-spacing: -0.9px;
    }


    .about-lead {
        font-size: 14px;

        line-height: 1.75;
    }


    /* Three columns become one */

    .about-grid {
        display: block;

        margin-top: 60px;
    }


    /* Cards */

    .about-card,
    .about-card+.about-card {
        padding: 30px 0 35px;

        border-left: none;
    }


    /* First card */

    .about-card:first-child {
        padding-top: 30px;
    }


    /* Separators */

    .about-card+.about-card {
        border-top: 1px solid rgba(11, 14, 19, 0.14);
    }


    .about-card-label {
        margin-bottom: 15px;
    }


    .about-card p {
        font-size: 14px;

        line-height: 1.75;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .about-section {
        padding: 55px 18px 65px;
    }


    .about-label,
    .about-card-label {
        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .about-intro h2 {
        font-size: 28px;

        letter-spacing: -0.6px;
    }


    .about-lead {
        font-size: 13px;

        line-height: 1.75;
    }


    .about-grid {
        margin-top: 45px;
    }


    .about-card,
    .about-card+.about-card {
        padding-top: 27px;
        padding-bottom: 30px;
    }


    .about-card p {
        font-size: 13px;

        line-height: 1.75;
    }
}

/* =========================================================
   TECH HYBR
   WHAT WE DO / WHY TECHHYBR
========================================================= */

.about-details-section {
    width: 100%;
    background: var(--paper);
    padding: 72px 6.5% 80px;
    box-sizing: border-box;
}

.about-details-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(11, 14, 19, 0.16);
}


/* =========================================================
   COLUMNS
========================================================= */

.about-details-column {
    min-width: 0;
    padding-top: 34px;
}

.about-details-column:first-child {
    padding-right: 40px;
}

.about-details-column:last-child {
    padding-left: 40px;
}


/* =========================================================
   HEADING
========================================================= */

.about-details-title {
    margin: 0 0 22px;

    font-family: var(--display);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;

    color: var(--ink);

    letter-spacing: -0.02em;
}


/* =========================================================
   LIST
========================================================= */

.about-details-list {
    list-style: none;

    margin: 0;
    padding: 0;

    width: 100%;
}


/* =========================================================
   LIST ITEM
========================================================= */

.about-details-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: start;

    column-gap: 1px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(11, 14, 19, 0.14);

    font-family: var(--body);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;

    color: var(--graphite-dark);
}


/* =========================================================
   BULLET
========================================================= */

.about-bullet {
    display: block;

    margin-top: 4px;

    font-size: 9px;
    line-height: 1;

    color: var(--teal);
}


/* =========================================================
   HOVER
========================================================= */

.about-details-list li {
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.about-details-list li:hover {
    color: var(--ink);
    padding-left: 5px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    .about-details-section {
        padding-left: 6.5%;
        padding-right: 6.5%;
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .about-details-title {
        font-size: 22px;
    }

    .about-details-list li {
        font-size: 16px;
        padding: 15px 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-details-section {
        padding: 60px 5%;
    }

    .about-details-container {
        grid-template-columns: 1fr;
    }

    .about-details-column:first-child,
    .about-details-column:last-child {
        padding-left: 0;
        padding-right: 0;
    }

    .about-details-column:last-child {
        margin-top: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-details-section {
        padding: 48px 20px 55px;
    }

    .about-details-column {
        padding-top: 25px;
    }

    .about-details-title {
        margin-bottom: 18px;
        font-size: 19px;
    }

    .about-details-list li {
        grid-template-columns: 14px 1fr;

        column-gap: 3px;

        padding: 13px 0;

        font-size: 14px;
        line-height: 1.55;
    }

    .about-details-column:last-child {
        margin-top: 42px;
    }

    .about-bullet {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .about-details-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-details-title {
        font-size: 18px;
    }

    .about-details-list li {
        font-size: 13.5px;
    }

}


/* =========================================================
   TECH HYBR — CONTACT SECTION
   Light / Premium Theme
========================================================= */

.contact-section {
    width: 100%;
    background: #f5f6f3;
    color: #0b0e13;
    padding: 110px 0 70px;
    overflow: hidden;
}

.contact-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================================
   TOP LABEL
========================================================= */

.contact-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 55px;
}

.contact-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #687079;
    white-space: nowrap;
}

.contact-line {
    height: 1px;
    flex: 1;
    background: #d7dad6;
}


/* =========================================================
   HEADING
========================================================= */

.contact-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 75px;
}

.contact-title {
    position: relative;
}

.contact-number {
    display: block;
    margin-bottom: 18px;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #929891;
}

.contact-title h2 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 600;
}

.contact-title h2 span {
    display: block;
    color: #69716b;
}


.contact-intro {
    max-width: 470px;
    padding-bottom: 5px;
}

.contact-intro p {
    margin: 0 0 20px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5d6460;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT INFORMATION GRID
========================================================= */

.contact-information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d7dad6;
    border-bottom: 1px solid #d7dad6;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
    min-height: 275px;
    padding: 34px 35px 38px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid #d7dad6;
}

.contact-card:first-child {
    padding-left: 0;
}

.contact-card:last-child {
    border-right: none;
    padding-right: 0;
}


/* =========================================================
   CARD TOP
========================================================= */

.contact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 50px;
}

.contact-card-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #858b86;
}

.contact-card-icon {
    font-size: 20px;
    line-height: 1;
    color: #737a75;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   MAIN CONTACT LINK
========================================================= */

.contact-main-link {
    display: inline-block;

    width: fit-content;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 500;
    letter-spacing: -0.8px;

    color: #0b0e13;
    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.contact-main-link:hover {
    color: #59625c;
    border-bottom-color: #59625c;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.contact-card p {
    margin: auto 0 0;

    max-width: 300px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.7;

    color: #777e79;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 270px;

    padding-bottom: 9px;

    border-bottom: 1px solid #dfe1de;

    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 500;

    color: #0b0e13;
    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.contact-social-link span:last-child {
    font-size: 15px;
    color: #929892;

    transition: transform 0.3s ease;
}

.contact-social-link:hover {
    color: #59625c;
    padding-left: 5px;
}

.contact-social-link:hover span:last-child {
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 70px 0;
}

.contact-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-bottom-small {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #8a908b;
}

.contact-bottom-large {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #0b0e13;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.contact-email-button {
    min-width: 170px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 17px 20px;

    background: #0b0e13;
    color: #ffffff;

    text-decoration: none;

    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-email-button span:last-child {
    font-size: 17px;
}

.contact-email-button:hover {
    background: #242a2f;
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER LINE
========================================================= */

.contact-footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 25px;

    border-top: 1px solid #d7dad6;

    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;

    color: #969c97;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 85px 0 55px;
    }

    .contact-heading {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 55px;
    }

    .contact-intro {
        max-width: 650px;
    }

    .contact-information {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card {
        min-height: 250px;
    }

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .contact-card:nth-child(3) {
        grid-column: 1 / -1;
        border-right: none;
        border-top: 1px solid #d7dad6;
        padding-left: 0;
        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-section {
        padding: 65px 0 45px;
    }

    .contact-container {
        width: calc(100% - 36px);
    }


    /* TOP */

    .contact-top {
        gap: 14px;
        margin-bottom: 40px;
    }

    .contact-label {
        font-size: 9px;
        letter-spacing: 2px;
    }


    /* HEADING */

    .contact-heading {
        gap: 28px;
        margin-bottom: 48px;
    }

    .contact-number {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .contact-title h2 {
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -2px;
    }

    .contact-intro p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }


    /* CONTACT CARDS */

    .contact-information {
        display: block;
    }

    .contact-card,
    .contact-card:first-child,
    .contact-card:last-child {
        min-height: auto;

        padding: 30px 0;

        border-right: none;
        border-bottom: 1px solid #d7dad6;
    }

    .contact-card:last-child {
        border-bottom: none;
    }

    .contact-card-top {
        margin-bottom: 30px;
    }

    .contact-main-link {
        font-size: 23px;
    }

    .contact-card p {
        margin-top: 25px;
        font-size: 12px;
    }

    .contact-social-link {
        max-width: 100%;
        font-size: 16px;
    }


    /* BOTTOM */

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;

        padding: 50px 0;

        gap: 30px;
    }

    .contact-bottom-large {
        font-size: 29px;
        line-height: 1.15;
    }

    .contact-email-button {
        width: 100%;
    }


    /* FOOTER */

    .contact-footer-line {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

        font-size: 8px;
        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-section {
        padding: 55px 0 40px;
    }

    .contact-container {
        width: calc(100% - 32px);
    }

    .contact-title h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .contact-main-link {
        font-size: 20px;
    }

    .contact-card {
        padding: 27px 0;
    }

    .contact-bottom {
        padding: 42px 0;
    }

    .contact-bottom-large {
        font-size: 26px;
    }

}/* ============================================================
   CURRENT HAPPENING
============================================================ */

.current-happening-section {

    padding: 110px 0;

    background: #f5f1e8;

    overflow: hidden;
}


.current-happening-container {
    width: min(
        1400px,
        calc(100% - 60px)
    );

    margin: 0 auto;
}


/* ============================================================
   HEADER
============================================================ */

.current-happening-header {

    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}


.current-happening-label {

    display: block;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #159f9a;
}


.current-happening-header h2 {

    margin: 0;

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 0.98;

    font-weight: 500;

    color: #111820;
}


.current-happening-header h2 span {

    color: #2db7ad;
}


.current-happening-intro {

    max-width: 420px;

    font-size: 16px;

    line-height: 1.8;

    color: #536274;
}


/* ============================================================
   SLIDER
============================================================ */

.current-happening-slider {

    display: flex;

    align-items: center;

    gap: 16px;

    width: 100%;

    position: relative;
}


/* ============================================================
   VIEWPORT
============================================================ */

.current-happening-scroll {

    flex: 1;

    min-width: 0;

    overflow: hidden;

    position: relative;
}


/* ============================================================
   TRACK
============================================================ */

.current-happening-track {

    display: flex;

    width: max-content;

    gap: 28px;

    transform: translateX(0);

    transition:
        transform 0.65s cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );

    will-change: transform;
}


/* ============================================================
   CARD
============================================================ */

.current-happening-card {

    flex: 0 0 360px;

    width: 360px;

    height: 590px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #ddd8ce;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.current-happening-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(
            0,
            0,
            0,
            0.08
        );
}


/* ============================================================
   IMAGE
============================================================ */

.current-happening-image {

    width: 100%;

    height: 245px;

    flex-shrink: 0;

    overflow: hidden;

    position: relative;

    background: #e8e3d8;
}


.current-happening-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.current-happening-card:hover
.current-happening-image img {

    transform: scale(1.05);
}


/* ============================================================
   PLACEHOLDER
============================================================ */

.current-happening-image-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #536274;

    font-size: 13px;

    background: #e8e3d8;
}


/* ============================================================
   CONTENT
============================================================ */

.current-happening-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 28px 30px 30px;
}


/* ============================================================
   NUMBER
============================================================ */

.current-happening-number {

    flex-shrink: 0;

    margin-bottom: 20px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #159f9a;
}


/* ============================================================
   TITLE
============================================================ */

.current-happening-content h3 {

    flex-shrink: 0;

    min-height: 60px;

    margin: 0 0 15px;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 600;

    color: #111820;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.current-happening-content p {

    flex-shrink: 0;

    min-height: 96px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #536274;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 4;

    overflow: hidden;
}


/* ============================================================
   CARD READ MORE
============================================================ */

.current-happening-card-readmore {

    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    width: fit-content;

    color: #159f9a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border-bottom: 1px solid transparent;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.current-happening-card-readmore:hover {

    color: #111820;

    border-bottom-color: #159f9a;
}


.current-happening-arrow {

    font-size: 22px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.current-happening-card-readmore:hover
.current-happening-arrow {

    transform: translateX(5px);
}


/* ============================================================
   SLIDER BUTTONS
============================================================ */

.current-happening-slider-btn {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    padding: 0;

    border: 1px solid #d5d0c6;

    background: #ffffff;

    color: #111820;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

    cursor: pointer;

    z-index: 10;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.current-happening-slider-btn:hover {

    background: #159f9a;

    color: #ffffff;

    transform: translateY(-2px);
}


.current-happening-slider-btn:active {

    transform: scale(0.94);
}


/* ============================================================
   VIEW ALL
============================================================ */

.current-happening-view-all {

    margin-top: 45px;

    display: flex;

    justify-content: center;
}


.current-happening-view-all-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: #159f9a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: color 0.25s ease;
}


.current-happening-view-all-link span {

    font-size: 20px;

    transition:
        transform 0.25s ease;
}


.current-happening-view-all-link:hover {

    color: #111820;
}


.current-happening-view-all-link:hover span {

    transform: translateX(5px);
}


/* ============================================================
   EMPTY
============================================================ */

.current-happening-empty {

    padding: 50px;

    border: 1px solid #ddd8ce;

    background: #ffffff;

    text-align: center;

    color: #536274;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .current-happening-card {

        flex-basis: 330px;

        width: 330px;

        height: 570px;
    }

    .current-happening-track {

        gap: 22px;
    }

}


@media (max-width: 900px) {

    .current-happening-header {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .current-happening-slider {

        gap: 10px;
    }


    .current-happening-slider-btn {

        flex-basis: 44px;

        width: 44px;

        height: 44px;
    }


    .current-happening-card {

        flex-basis: 320px;

        width: 320px;

        height: 560px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .current-happening-section {

        padding: 75px 0;
    }


    .current-happening-container {

        width: calc(
            100% - 32px
        );
    }


    .current-happening-header {

        margin-bottom: 35px;
    }


    .current-happening-header h2 {

        font-size: 44px;
    }


    .current-happening-intro {

        font-size: 14px;
    }


    .current-happening-slider {

        gap: 8px;
    }


    .current-happening-card {

        flex: 0 0 calc(
            100vw - 100px
        );

        width: calc(
            100vw - 100px
        );

        height: 550px;
    }


    .current-happening-track {

        gap: 18px;
    }


    .current-happening-image {

        height: 205px;
    }


    .current-happening-content {

        padding: 24px;
    }


    .current-happening-content h3 {

        font-size: 23px;
    }


    .current-happening-content p {

        font-size: 13px;
    }


    .current-happening-slider-btn {

        flex: 0 0 38px;

        width: 38px;

        height: 38px;

        font-size: 17px;
    }


    .current-happening-view-all {

        margin-top: 30px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .current-happening-track {

        transition: none;
    }

}