/* =====================================================
   ARTISTE 360
   PREMIUM HERO SECTION
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --red: #e23e25;
    --red-dark: #c8321d;

    --navy: #080b35;
    --navy-dark: #050711;

    --white: #ffffff;
    --soft-white: #f4f4f5;

    --grey: #b9bbc5;

    --border: rgba(255,255,255,0.16);

    --container: 1360px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    background: var(--navy-dark);

    color: var(--white);
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    width: 100%;

    height: 100vh;
    min-height: 680px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
}


/* =====================================================
   BACKGROUND VIDEO
===================================================== */

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

}


/* =====================================================
   VIDEO OVERLAY
===================================================== */

.hero-overlay {


    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 6, 18, 0.72) 0%,
            rgba(4, 6, 18, 0.48) 45%,
            rgba(4, 6, 18, 0.72) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 6, 18, 0.42) 0%,
            rgba(4, 6, 18, 0.18) 45%,
            rgba(4, 6, 18, 0.82) 100%
        );

    pointer-events: none;
}

/* Subtle brand colour atmosphere */

.hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 15% 45%,
            rgba(226,62,37,0.12),
            transparent 32%
        ),

        radial-gradient(
            circle at 85% 20%,
            rgba(8,11,53,0.28),
            transparent 38%
        );

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: relative;

    z-index: 20;

    width: min(
        calc(100% - 70px),
        var(--container)
    );

    margin: 0 auto;

    padding-top: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: flex;

    align-items: center;

    width: 175px;

}


.logo img {

    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;

}


/* =====================================================
   NAVIGATION
===================================================== */

.main-nav {

    display: flex;

    align-items: center;

    gap: 2px;

    padding: 5px;

    background:
        rgba(8,11,53,0.50);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 100px;

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

}


.main-nav a {

    padding: 9px 16px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    color:
        rgba(255,255,255,0.86);

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.main-nav a:hover {

    background:
        rgba(255,255,255,0.10);

    color: #ffffff;

}


/* =====================================================
   HEADER REGISTER BUTTON
===================================================== */

.header-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        6px 7px 6px 18px;

    background:
        var(--red);

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.header-cta i {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #ffffff;

    color:
        var(--navy);

    font-style: normal;

    font-size: 17px;

    transition:
        transform 0.3s ease;

}


.header-cta:hover {

    background:
        var(--red-dark);

    transform:
        translateY(-2px);

}


.header-cta:hover i {

    transform:
        translateX(3px);

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    
     position: relative;
    z-index: 3;

    width: min(calc(100% - 40px), 1120px);

    margin: auto auto 0;

    text-align: center;

    padding: 25px 0 145px;

    animation: heroReveal 1s ease both;
}




.hero h1 {
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.45);
}


.hero h1 em {
    color: #E33B25;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(227, 59, 37, 0.12);
}


/* =====================================================
   HERO LABEL
===================================================== */

.hero-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    margin-bottom:
        18px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.18em;

    color:
        rgba(255,255,255,0.82);

}


.hero-label span {

    width:
        7px;

    height:
        7px;

    flex-shrink:
        0;

    background:
        var(--red);

    border-radius:
        50%;

    box-shadow:

        0 0 0 5px
        rgba(226,62,37,0.12),

        0 0 18px
        rgba(226,62,37,0.75);

}


/* =====================================================
   HERO HEADLINE
===================================================== */

.hero h1 {
    max-width: 1250px;

    margin: 0 auto;

    font-size: clamp(48px, 5vw, 74px);

    line-height: 0.94;

    letter-spacing: -0.055em;

}


/* Italic red words */

.hero h1 em {

    font-family:
        "Playfair Display",
        serif;

    font-style:
        italic;

    font-weight:
        500;

    color:
        var(--red);

}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width:
        820px;

    margin:
        15px auto 0;

    font-size:
        13px;

    line-height:
        1.45;

    color:
        rgba(255,255,255,0.76);

}


/* =====================================================
   CTA AREA
===================================================== */

.hero-actions {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-top:
        17px;

}


/* =====================================================
   PRIMARY CTA
===================================================== */

.primary-cta {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        6px 7px 6px 22px;

    background:
        var(--red);

    color:
        #ffffff;

    border-radius:
        100px;

    font-size:
        14px;

    font-weight:
        700;

    box-shadow:
        0 14px 35px
        rgba(226,62,37,0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.primary-cta i {

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #ffffff;

    color:
        var(--navy);

    border-radius:
        50%;

    font-style:
        normal;

    font-size:
        18px;

    transition:
        transform 0.3s ease;

}


.primary-cta:hover {

    background:
        var(--red-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(226,62,37,0.30);

}


.primary-cta:hover i {

    transform:
        translateX(4px);

}


/* =====================================================
   PROGRAMME DETAILS
===================================================== */

/* =====================================================
   PROGRAMME OPTIONS
===================================================== */

.programme-options {

    position: absolute;

    z-index: 10;

    left: 50%;

    bottom: 14px;

    transform: translateX(-50%);

    width: min(
        calc(100% - 70px),
        1360px
    );

}


/* =====================================================
   OPTIONS HEADING
===================================================== */

.options-heading {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 8px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color:
        rgba(255,255,255,0.55);

}


.options-heading span {

    width: 5px;

    height: 5px;

    background:
        var(--red);

    border-radius: 50%;

}


/* =====================================================
   PROGRAMME CARDS
===================================================== */

.programme-cards {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

}


/* =====================================================
   PROGRAMME CARD
===================================================== */

.programme-card {

    min-height: 76px;

    display: grid;

    grid-template-columns:
        35px 1fr auto;

    align-items: center;

    gap: 12px;

    padding:
        9px 16px;

    background:
        rgba(8,11,53,0.64);

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius: 15px;

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;

}


.programme-card:hover {

    background:
        rgba(8,11,53,0.76);

    border-color:
        rgba(226,62,37,0.40);

    transform:
        translateY(-2px);

}


/* =====================================================
   PROGRAMME NUMBER
===================================================== */

.programme-number {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(226,62,37,0.45);

    border-radius: 50%;

    color:
        var(--red);

    font-size: 9px;

    font-weight: 700;

}


/* =====================================================
   CARD CONTENT
===================================================== */

.programme-card-title {

    font-size: 14px;

    font-weight: 700;

    line-height: 1.2;

}


.programme-date {

    margin-top: 2px;

    font-size: 9px;

    color:
        rgba(255,255,255,0.68);

}


.programme-meta {

    display: flex;

    gap: 15px;

    margin-top: 3px;

    font-size: 8px;

    color:
        rgba(255,255,255,0.48);

}


.programme-meta span {

    position: relative;

}


.programme-meta span + span::before {

    content: "•";

    position: absolute;

    left: -9px;

    color:
        rgba(255,255,255,0.28);

}


/* =====================================================
   PRICE
===================================================== */

.programme-price {

    min-width:
        115px;

    padding-left:
        18px;

    border-left:
        1px solid
        rgba(255,255,255,0.12);

}


.programme-price small {

    display: block;

    font-size: 7px;

    letter-spacing:
        0.14em;

    color:
        rgba(255,255,255,0.42);

}


.programme-price strong {

    font-size:
        20px;

    font-weight:
        600;

    color:
        #ffffff;

}


.programme-price span {

    margin-left:
        3px;

    font-size:
        8px;

    color:
        rgba(255,255,255,0.48);

}


/* =====================================================
   COHORT NOTE
===================================================== */

.cohort-note {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 7px;

    font-size: 12px;

    color:
        rgba(255,255,255,0.52);

}


.cohort-note strong {

    color:
        rgba(255,255,255,0.82);

}


.cohort-dot {

    width: 5px;

    height: 5px;

    background:
        var(--red);

    border-radius: 50%;

}


.cohort-divider {

    margin:
        0 3px;

    color:
        rgba(255,255,255,0.25);

}



/* =====================================================
   MOBILE PROGRAMME OPTIONS
===================================================== */

@media (max-width: 768px) {

    .hero-content {

        padding:
            20px 0 320px;

    }


    .hero h1 {

        font-size:
            clamp(40px, 11vw, 58px);

        line-height:
            1.02;

    }


    .hero-description {

        font-size:
            12px;

        max-width:
            500px;

    }


    /* PROGRAMME OPTIONS */

    .programme-options {

        width:
            calc(100% - 32px);

        bottom:
            14px;

    }


    .options-heading {

        justify-content:
            flex-start;

        margin-bottom:
            6px;

        font-size:
            7px;

    }


    .programme-cards {

        grid-template-columns:
            1fr;

        gap:
            6px;

    }


    .programme-card {

        min-height:
            72px;

        grid-template-columns:
            27px 1fr auto;

        gap:
            9px;

        padding:
            8px 10px;

        border-radius:
            11px;

    }


    .programme-number {

        width:
            25px;

        height:
            25px;

        font-size:
            8px;

    }


    .programme-card-title {

        font-size:
            11px;

    }


    


    .programme-price {

        min-width:
            72px;

        padding-left:
            8px;

    }


    .programme-price small {

        font-size:
            11px;

    }


    .programme-price strong {

        font-size:
            15px;

    }


    .programme-price span {

        display:
            block;

        margin-left:
            0;

        font-size:
            7px;

    }


    .cohort-note {

        margin-top:
            5px;

        font-size:
            6.5px;

        white-space:
            nowrap;

    }

}

@media (max-width: 768px) {

    .cohort-note {
        margin-top: 7px;
        font-size: 9px !important;
        white-space: nowrap;
    }

    .cohort-note strong {
        font-size: 11px !important;
    }

}

/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display:
        none;

    width:
        43px;

    height:
        43px;

    padding:
        0;

    border:
        1px solid
        rgba(255,255,255,0.16);

    border-radius:
        50%;

    background:
        rgba(8,11,53,0.70);

    cursor:
        pointer;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        4px;

}


.menu-toggle span {

    display:
        block;

    width:
        18px;

    height:
        2px;

    background:
        #ffffff;

    border-radius:
        10px;

}


/* =====================================================
   HERO ANIMATION
===================================================== */

@keyframes heroReveal {

    from {

        opacity:
            0;

        transform:
            translateY(22px);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0);

    }

}


/* =====================================================
   LARGE LAPTOP
===================================================== */

@media (max-width: 1200px) {

    .site-header {

        width:
            calc(100% - 50px);

    }


    .programme-details {

        width:
            calc(100% - 50px);

    }


    .hero h1 {

        font-size:
            clamp(50px, 5.8vw, 74px);

    }


    .main-nav a {

        padding:
            9px 12px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .logo {

        width:
            155px;

    }


    .main-nav a {

        padding:
            8px 9px;

        font-size:
            11px;

    }


    .header-cta {

        padding-left:
            14px;

        font-size:
            11px;

    }


    .header-cta i {

        width:
            32px;

        height:
            32px;

    }


    .hero-content {

        padding-bottom:
            140px;

    }


    .hero h1 {

        font-size:
            clamp(45px, 6vw, 65px);

    }


    .hero-description {

        max-width:
            720px;

        font-size:
            13px;

    }


}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {


    /* ---------------------------------------------
       HERO
    --------------------------------------------- */

    .hero {

        min-height:
            100svh;

    }


    /* ---------------------------------------------
       HEADER
    --------------------------------------------- */

    .site-header {

        width:
            calc(100% - 32px);

        padding-top:
            14px;

    }


    .logo {

        width:
            145px;

    }


    /* Hide desktop nav */

    .main-nav {

        display:
            none;

    }


    /* Hide desktop button */

    .header-cta {

        display:
            none;

    }


    /* Show menu */

    .menu-toggle {

        display:
            flex;

    }


    /* ---------------------------------------------
       MOBILE NAVIGATION
    --------------------------------------------- */

    .main-nav.mobile-active {

        position:
            absolute;

        top:
            64px;

        left:
            0;

        right:
            0;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            8px;

        gap:
            2px;

        border-radius:
            18px;

        background:
            rgba(5,7,17,0.97);

        border:
            1px solid
            rgba(255,255,255,0.12);

        backdrop-filter:
            blur(22px);

        -webkit-backdrop-filter:
            blur(22px);

    }


    .main-nav.mobile-active a {

        padding:
            14px 16px;

        font-size:
            14px;

        border-radius:
            10px;

    }


    .main-nav.mobile-active a:hover {

        background:
            rgba(255,255,255,0.08);

    }


    /* ---------------------------------------------
       HERO CONTENT
    --------------------------------------------- */

    .hero-content {

        width:
            calc(100% - 32px);

        padding:
            25px 0 205px;

    }


    /* ---------------------------------------------
       LABEL
    --------------------------------------------- */

    .hero-label {

        font-size:
            8px;

        letter-spacing:
            0.14em;

        margin-bottom:
            16px;

    }


    /* ---------------------------------------------
       HEADLINE
    --------------------------------------------- */

    .hero h1 {

        font-size:
            clamp(42px, 11.8vw, 60px);

        line-height:
            1;

        letter-spacing:
            -0.055em;

    }


    /* ---------------------------------------------
       DESCRIPTION
    --------------------------------------------- */

    .hero-description {

        max-width:
            520px;

        margin-top:
            19px;

        font-size:
            12.5px;

        line-height:
            1.6;

    }


    /* ---------------------------------------------
       CTA
    --------------------------------------------- */

    .hero-actions {

        margin-top:
            23px;

    }


    .primary-cta {

        width:
            100%;

        max-width:
            250px;

        justify-content:
            space-between;

        padding-left:
            19px;

    }


    /* ---------------------------------------------
       PROGRAMME DETAILS
    --------------------------------------------- */

    .programme-details {

        width:
            calc(100% - 32px);

        bottom:
            16px;

        grid-template-columns:
            1fr 1fr;

        gap:
            14px 0;

        padding-top:
            13px;

    }


    .detail-item {

        padding:
            0 12px;

        border-right:
            none;

    }


    .detail-item:nth-child(odd) {

        border-right:
            1px solid
            rgba(255,255,255,0.12);

    }


    .detail-item:first-child {

        padding-left:
            0;

    }


    .detail-item:nth-child(3) {

        padding-left:
            0;

    }


    .detail-label {

        font-size:
            7px;

        letter-spacing:
            0.15em;

        margin-bottom:
            4px;

    }


    .detail-item strong {

        font-size:
            13px;

    }


    .detail-item small {

        font-size:
            9px;

        margin-top:
            2px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {


    .logo {

        width:
            130px;

    }


    .menu-toggle {

        width:
            40px;

        height:
            40px;

    }


    .hero-content {

        padding-bottom:
            198px;

    }


    .hero h1 {

        font-size:
            40px;

    }


    .hero-description {

        font-size:
            12px;

    }


    .primary-cta {

        max-width:
            235px;

        font-size:
            13px;

    }


    .primary-cta i {

        width:
            37px;

        height:
            37px;

    }


    .detail-item strong {

        font-size:
            12px;

    }


    .detail-item small {

        font-size:
            8px;

    }

}


/* =====================================================
   VERY SHORT DESKTOP SCREENS
   Helps prevent scrolling on 1366x768 type screens
===================================================== */

@media (min-width: 769px) and (max-height: 800px) {

    .site-header {

        padding-top:
            12px;

    }


    .logo {

        width:
            160px;

    }


    .hero-content {

        padding:
            10px 0 125px;

    }


    .hero-label {

        margin-bottom:
            12px;

    }


    .hero h1 {

        font-size:
            clamp(46px, 5vw, 68px);

    }


    .hero-description {

        margin-top:
            15px;

        font-size:
            13px;

    }


    .hero-actions {

        margin-top:
            17px;

    }


    .primary-cta {

        font-size:
            13px;

    }


    .primary-cta i {

        width:
            37px;

        height:
            37px;

    }


    .programme-details {

        bottom:
            12px;

        padding-top:
            12px;

    }


    .detail-item strong {

        font-size:
            15px;

    }

}



/* =====================================================
   PROGRAMME DATE + SESSION SIZE
===================================================== */

.programme-date {
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.88) !important;
}

.programme-meta {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
    color: rgba(255,255,255,0.65) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .programme-date {
        font-size: 10px !important;
    }

    .programme-meta {
        font-size: 8px !important;
        margin-top: 3px !important;
    }

}


/* =====================================================
   ABOUT PROGRAMME
===================================================== */

.about-programme {

    position: relative;

    background: #F7F7F5;

    color: #080A12;

    padding: 120px 7% 60px;

    overflow: hidden;
}


/* -----------------------------------------------------
   CONTAINER
----------------------------------------------------- */

.about-container {

    width: 100%;

    max-width: 1380px;

    margin: 0 auto;

}


/* -----------------------------------------------------
   SECTION LABEL
----------------------------------------------------- */

.about-label {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: #080A12;

    margin-bottom: 30px;
}


.about-label-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #E33B25;

    display: block;

    box-shadow:
        0 0 0 5px rgba(227,59,37,0.10);
}


/* -----------------------------------------------------
   HEADING
----------------------------------------------------- */

.about-heading-wrap {

    position: relative;

    margin-bottom: 70px;
}


.about-heading-wrap h2 {

    max-width: 1100px;

    margin: 0;

    font-size: clamp(28px, 3.5vw, 62px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 600;

    color: #080A12;
}


.about-heading-wrap h2 span {

    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #E33B25;

    letter-spacing: -0.045em;
}


/* -----------------------------------------------------
   DECORATIVE LINE
----------------------------------------------------- */

.heading-line {

    width: 100%;

    height: 1px;

    background: rgba(8,10,18,0.14);

    margin-top: 45px;

    position: relative;
}


.heading-line::after {

    content: "";

    position: absolute;

    left: 0;

    top: -1px;

    width: 80px;

    height: 3px;

    background: #E33B25;
}


/* -----------------------------------------------------
   MAIN GRID
----------------------------------------------------- */

.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, 0.85fr);

    gap: 100px;

    align-items: start;
}


/* -----------------------------------------------------
   LEFT COPY
----------------------------------------------------- */

.about-copy {

    max-width: 760px;
}


.about-copy p {

    margin: 0 0 26px;

    font-size: 17px;

    line-height: 1.72;

    color: #3E4350;
}


.about-copy .about-intro {

    font-size: 22px;

    line-height: 1.55;

    font-weight: 500;

    color: #171A23;

    margin-bottom: 35px;
}


/* -----------------------------------------------------
   GOAL BOX
----------------------------------------------------- */

.about-goal {
    display: block;

    margin-top: 45px;

    padding-top: 28px;

    border-top: 1px solid rgba(8,10,18,0.14);
}


.about-goal small {
    display: block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: #000B68;

    margin-bottom: 12px;
}


.about-goal p {
    margin: 0;

    max-width: 760px;

    font-size: 18px;

    line-height: 1.55;

    color: #171A23;
}


/* =====================================================
   WHO IS THIS PROGRAMME FOR
===================================================== */

.programme-for {

    position: relative;

    background: #080B22;

    color: #FFFFFF;

    padding: 38px 38px 20px;

    border-radius: 4px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12);
}


/* -----------------------------------------------------
   CARD TOP
----------------------------------------------------- */

.programme-for-top {

    padding-bottom: 28px;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}


.programme-for-top span {

    display: block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.55);

    margin-bottom: 5px;
}


.programme-for-top strong {

    display: block;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 600;
}


/* -----------------------------------------------------
   LIST ITEMS
----------------------------------------------------- */

.for-item {

    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 16px;

    padding: 25px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}


.for-number {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(227,59,37,0.7);

    border-radius: 50%;

    font-size: 10px;

    color: #E33B25;

    transition: all 0.3s ease;
}


.for-item strong {

    display: block;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 6px;

    color: #FFFFFF;
}


.for-item p {

    margin: 0;

    font-size: 13px;

    line-height: 1.55;

    color: rgba(255,255,255,0.58);
}


/* -----------------------------------------------------
   HOVER
----------------------------------------------------- */

.for-item:hover .for-number {

    background: #E33B25;

    border-color: #E33B25;

    color: #FFFFFF;

    transform: rotate(8deg);
}


/* -----------------------------------------------------
   CARD ACCENT
----------------------------------------------------- */

.programme-card-accent {

    position: absolute;

    width: 180px;

    height: 180px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    border: 1px solid rgba(227,59,37,0.25);

    pointer-events: none;
}


.programme-card-accent::after {

    content: "";

    position: absolute;

    width: 100px;

    height: 100px;

    right: 39px;

    bottom: 39px;

    border-radius: 50%;

    border: 1px solid rgba(0,11,104,0.45);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .about-programme {

        padding:
            90px 5%
            100px;
    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-copy {

        max-width: 900px;
    }


    .programme-for {

        max-width: 700px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .about-programme {

        padding:
            75px 22px
            80px;
    }


    .about-label {

        font-size: 10px;

        margin-bottom: 22px;
    }


    .about-heading-wrap {

        margin-bottom: 45px;
    }


    .about-heading-wrap h2 {

        font-size: clamp(40px, 11vw, 58px);

        line-height: 0.98;

        letter-spacing: -0.045em;
    }


    .heading-line {

        margin-top: 30px;
    }


    .about-grid {

        gap: 45px;
    }


    .about-copy .about-intro {

        font-size: 19px;

        line-height: 1.55;

        margin-bottom: 28px;
    }


    .about-copy p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 22px;
    }


    .about-goal {
        display: block;
        margin-top: 35px;
    }

    .about-goal p {
        font-size: 16px;
        line-height: 1.6;
    }



    .programme-for {

        padding:
            28px 22px
            15px;

        border-radius: 3px;
    }


    .programme-for-top {

        padding-bottom: 23px;
    }


    .programme-for-top strong {

        font-size: 22px;
    }


    .for-item {

        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 21px 0;
    }


    .for-item strong {

        font-size: 15px;
    }


    .for-item p {

        font-size: 12px;

        line-height: 1.5;
    }

}



/* =====================================================
   FOUNDER SECTION
===================================================== */

.founder-section {

    position: relative;

    background: #f7f7f5;

    padding: 70px 3vw;

    overflow: hidden;
}


/* SUBTLE BACKGROUND DETAIL */

.founder-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 80px;

    background: rgba(227, 59, 37, 0.045);

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}


/* CONTAINER */

.founder-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


/* =====================================================
   IMAGE
===================================================== */

.founder-image-wrap {

    position: relative;

    padding: 18px;

}


/* RED OFFSET FRAME */

.founder-image-frame {

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    /* border: 1px solid #E33B25; */

    transform: translate(-10px, -10px);

    opacity: 0.7;

}


/* IMAGE */

.founder-image {

    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #111426;

}


.founder-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.7s ease;
}


.founder-image-wrap:hover
.founder-image img {

    transform: scale(1.035);

}


/* IMAGE LABEL */

.founder-image-label {

    position: absolute;

    left: 0;

    bottom: -18px;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;

    color: #101329;

}


.founder-image-label span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #E33B25;

}


/* =====================================================
   CONTENT
===================================================== */

.founder-content {

    max-width: 650px;

}


/* SECTION LABEL */

.founder-content .section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.17em;

    color: #0A1268;

}


.founder-content .section-label span {

    width: 8px;
    height: 8px;

    background: #E33B25;

    border-radius: 50%;

}


/* HEADING */

.founder-content h2 {

    margin: 0;

    font-size: clamp(28px, 3.5vw, 62px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 600;

    color: #090B14;

}


.founder-content h2 em {

    display: inline-block;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #E33B25;

}


/* NAME */

.founder-name {

    margin-top: 28px;

    font-size: 20px;

    font-weight: 700;

    color: #090B14;

}


/* ROLE */

.founder-role {

    margin: 7px 0 0;

    font-size: 14px;

    line-height: 1.6;

    color: #51566A;

}


.founder-role span {

    color: #E33B25;

}


/* =====================================================
   EDUCATION
===================================================== */

.founder-info {

    display: grid;

    grid-template-columns: 105px 1fr;

    gap: 20px;

    padding: 27px 0;

    margin-top: 30px;

    border-top: 1px solid rgba(10,18,104,0.14);

    border-bottom: 1px solid rgba(10,18,104,0.14);

}


.founder-info-label {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.17em;

    color: #0A1268;

}


.founder-info-text {

    font-size: 15px;

    line-height: 1.5;

    color: #171A23;

}


/* =====================================================
   FOUNDER STORY
===================================================== */

.founder-story {

    margin-top: 28px;

}


.founder-story p {

    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.7;

    color: #404657;

}


.founder-story p:last-child {

    margin-bottom: 0;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .founder-section {

        padding: 40px 6vw;

    }


    .founder-container {

        grid-template-columns: 1fr;

        gap: 65px;

        max-width: 700px;

    }


    .founder-image-wrap {

        max-width: 520px;

        width: 100%;

        margin: 0 auto;

    }


    .founder-content {

        max-width: none;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .founder-section {

        padding: 40px 22px;

    }


    .founder-container {

        gap: 50px;

    }


    .founder-image-wrap {

        padding: 12px;

    }


    .founder-image-frame {

        transform: translate(-6px, -6px);

    }


    .founder-image-label {

        bottom: -14px;

        font-size: 7px;

    }


    .founder-content .section-label {

        margin-bottom: 18px;

        font-size: 11px;

    }


    .founder-content h2 {

        font-size: clamp(42px, 13vw, 58px);

    }


    .founder-name {

        margin-top: 22px;

        font-size: 18px;

    }


    .founder-role {

        font-size: 13px;

    }


    .founder-info {

        grid-template-columns: 1fr;

        gap: 8px;

        margin-top: 25px;

        padding: 22px 0;

    }


    .founder-info-text {

        font-size: 14px;

    }


    .founder-story {

        margin-top: 24px;

    }


    .founder-story p {

        font-size: 15px;

        line-height: 1.65;

    }

}

@media (max-width: 768px) {

    .founder-image-wrap {
        width: 100%;
        max-width: 420px;
        height: 300px;
        margin: 0 auto;
    }

    .founder-image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center 20%;
    }

}




/* =====================================================
   FOUNDER SCROLL ANIMATIONS
===================================================== */

.founder-reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

}


.founder-reveal.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* STAGGER */

.founder-delay-1 {
    transition-delay: 0.12s;
}

.founder-delay-2 {
    transition-delay: 0.22s;
}

.founder-delay-3 {
    transition-delay: 0.34s;
}

.founder-delay-4 {
    transition-delay: 0.46s;
}


/* =====================================================
   FOUNDER IMAGE REVEAL
===================================================== */

.founder-image-animation {

    opacity: 0;

    transform: translateX(-50px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);

}


.founder-image-animation.is-visible {

    opacity: 1;

    transform: translateX(0);

}


/* =====================================================
   RED FRAME ANIMATION
===================================================== */

.founder-image-frame {

    transform:
        translate(-10px, -10px)
        scale(0.96);

    opacity: 0;

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
        opacity 0.8s ease 0.35s;

}


.founder-image-animation.is-visible
.founder-image-frame {

    transform:
        translate(-10px, -10px)
        scale(1);

    opacity: 0.7;

}


/* =====================================================
   IMAGE HOVER
===================================================== */

.founder-image img {

    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);

}


.founder-image-wrap:hover
.founder-image img {

    transform: scale(1.04);

}




/* =====================================================
   WHAT YOU LEAVE WITH
===================================================== */

.outcomes-section {

    position: relative;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(237, 58, 38, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08091A 0%,
            #0D0E27 50%,
            #08091A 100%
        );

    padding: 105px 6vw 115px;

    color: #FFFFFF;

    overflow: hidden;
}


/* subtle decorative circles */

.outcomes-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    top: 100px;

    border: 1px solid rgba(237, 58, 38, 0.16);

    border-radius: 50%;

    pointer-events: none;
}


.outcomes-section::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -160px;
    bottom: -130px;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.outcomes-container {

    position: relative;

    z-index: 2;

    width: min(1250px, 100%);

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.outcomes-header {

    max-width: 780px;

    margin-bottom: 60px;
}


.outcomes-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.82);
}


.outcomes-label span {

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    background: #ED3A26;

    border-radius: 50%;
}


.outcomes-header h2 {

    margin: 0;

    font-size: clamp(28px, 3.5vw, 62px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 600;

    color: #FFFFFF;
}


.outcomes-header h2 em {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #ED3A26;
}


.outcomes-header p {

    max-width: 620px;

    margin: 22px 0 0;

    font-size: 16px;

    line-height: 1.65;

    color: rgba(255,255,255,0.65);
}


/* =====================================================
   GRID
===================================================== */

/*
   3 cards in first row
   2 centered cards in second row
*/

.outcomes-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 18px;
}


/* First 3 */

.outcome-card:nth-child(1),
.outcome-card:nth-child(2),
.outcome-card:nth-child(3) {

    grid-column: span 2;
}


/* Second row — centered */

.outcome-card:nth-child(4) {

    grid-column: 2 / span 2;
}


.outcome-card:nth-child(5) {

    grid-column: 4 / span 2;
}


/* =====================================================
   CARD
===================================================== */

.outcome-card {

    position: relative;

    min-height: 335px;

    padding: 32px 30px 34px;

    background:
        linear-gradient(
            145deg,
            rgba(25,27,61,0.96),
            rgba(12,14,38,0.96)
        );

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* red accent line */

.outcome-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 2px;

    background: #ED3A26;

    transition: width 0.45s ease;
}


/* hover */

.outcome-card:hover {

    transform: translateY(-7px);

    border-color: rgba(237,58,38,0.38);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.25);
}


.outcome-card:hover::before {

    width: 100%;
}


/* =====================================================
   NUMBER
===================================================== */

.outcome-number {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border: 1px solid #ED3A26;

    border-radius: 50%;

    font-size: 12px;

    font-weight: 700;

    color: #ED3A26;
}


/* divider */

.outcome-divider {

    width: 100%;

    height: 1px;

    margin: 27px 0 25px;

    background: rgba(255,255,255,0.10);
}


/* =====================================================
   CARD TEXT
===================================================== */

.outcome-card h3 {

    max-width: 330px;

    margin: 0 0 15px;

    font-size: 23px;

    line-height: 1.18;

    letter-spacing: -0.025em;

    font-weight: 600;

    color: #FFFFFF;
}


.outcome-card p {

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,0.62);
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

.outcome-card {

    opacity: 0;

    transform: translateY(35px);

}


.outcome-card.is-visible {

    opacity: 1;

    transform: translateY(0);

}


.outcome-card:nth-child(1) {
    transition-delay: 0.05s;
}

.outcome-card:nth-child(2) {
    transition-delay: 0.12s;
}

.outcome-card:nth-child(3) {
    transition-delay: 0.19s;
}

.outcome-card:nth-child(4) {
    transition-delay: 0.26s;
}

.outcome-card:nth-child(5) {
    transition-delay: 0.33s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .outcomes-section {

        padding: 85px 5vw 95px;

    }


    .outcomes-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .outcome-card:nth-child(1),
    .outcome-card:nth-child(2),
    .outcome-card:nth-child(3),
    .outcome-card:nth-child(4),
    .outcome-card:nth-child(5) {

        grid-column: auto;

    }


    .outcome-card {

        min-height: 320px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .outcomes-section {

        padding: 70px 20px 75px;

    }


    .outcomes-header {

        margin-bottom: 38px;

    }


    .outcomes-label {

        font-size: 11px;

        letter-spacing: 0.16em;

        margin-bottom: 17px;

    }


    .outcomes-header h2 {

        font-size: 43px;

        line-height: 1;

        letter-spacing: -0.045em;

    }


    .outcomes-header p {

        margin-top: 18px;

        font-size: 14px;

        line-height: 1.6;

    }


    .outcomes-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .outcome-card:nth-child(1),
    .outcome-card:nth-child(2),
    .outcome-card:nth-child(3),
    .outcome-card:nth-child(4),
    .outcome-card:nth-child(5) {

        grid-column: auto;

    }


    .outcome-card {

        min-height: auto;

        padding: 25px 22px 28px;

        border-radius: 14px;

    }


    .outcome-number {

        width: 39px;
        height: 39px;

        font-size: 11px;

    }


    .outcome-divider {

        margin: 22px 0 20px;

    }


    .outcome-card h3 {

        font-size: 21px;

    }


    .outcome-card p {

        font-size: 14px;

        line-height: 1.65;

    }

}




/* =====================================================
   CURRICULUM — IMAGE EDITORIAL LAYOUT
===================================================== */

.curriculum-image-section {

    background: #f7f6f2;

    color: #10152d;

    padding: 65px 6vw 65px;

    overflow: hidden;

}


.curriculum-image-container {

    width: min(1280px, 100%);

    margin: 0 auto;

}


/* =====================================================
   INTRO
===================================================== */

.curriculum-image-intro {

    margin-bottom: 105px;

}


.curriculum-image-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .20em;

    color: #5d6070;

}


.curriculum-image-label span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #e54832;

}


.curriculum-image-intro-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 90px;

    align-items: end;

}


.curriculum-image-heading h2 {

    margin: 0;

    font-size: clamp(65px, 5.5vw, 72px);

    line-height: .94;

    letter-spacing: -.065em;

    font-weight: 600;

}


.curriculum-image-heading h2 em {

    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #e54832;

}


.curriculum-image-line {

    width: 100%;

    height: 1px;

    margin: 38px 0 25px;

    background: rgba(16,21,45,.16);

}


.curriculum-image-tagline {

    margin: 0;

    font-size: 16px;

    font-weight: 600;

}


.curriculum-image-intro-copy {

    max-width: 580px;

}


.curriculum-image-intro-copy p {

    margin: 0 0 18px;

    font-size: 18px;

    line-height: 1.8;

    color: #656776;

}


/* =====================================================
   CURRICULUM LIST
===================================================== */

.curriculum-image-list {

    border-top: 1px solid rgba(16,21,45,.18);

}


/* =====================================================
   ITEM
===================================================== */

.curriculum-image-item {

    position: relative;

    display: grid;

    grid-template-columns: 80px minmax(320px, 1fr) minmax(320px, .9fr);

    gap: 50px;

    align-items: center;

    padding: 70px 0;

    border-bottom: 1px solid rgba(16,21,45,.14);

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.curriculum-image-item.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* NUMBER */

.curriculum-image-number {

    align-self: start;

    padding-top: 4px;

    font-family: "Playfair Display", serif;

    font-size: 58px;

    line-height: 1;

    font-style: italic;

    color: #e54832;

}


/* =====================================================
   IMAGE
===================================================== */

.curriculum-image-photo {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #ddd;

}


.curriculum-image-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);

}


.curriculum-image-item:hover
.curriculum-image-photo img {

    transform: scale(1.045);

}


/* IMAGE OVERLAY */

.curriculum-image-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(16,21,45,.08),
            transparent 60%
        );

    pointer-events: none;

}


/* =====================================================
   CONTENT
===================================================== */

.curriculum-image-content {

    max-width: 500px;

}


.curriculum-image-content > span {

    display: block;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .20em;

    color: #858694;

}


.curriculum-image-content h3 {

    margin: 0 0 22px;

    font-size: clamp(32px, 3.2vw, 48px);

    line-height: 1.02;

    letter-spacing: -.05em;

    font-weight: 600;

}


.curriculum-image-content h3 em {

    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #e54832;

}


.curriculum-image-content > p {

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #666875;

}


/* =====================================================
   FOCUS
===================================================== */

.curriculum-focus {

    margin-top: 27px;

    padding-top: 18px;

    border-top: 1px solid rgba(16,21,45,.10);

}


.curriculum-focus small {

    display: block;

    margin-bottom: 11px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .18em;

    color: #e54832;

}


.curriculum-focus ul {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.curriculum-focus li {
    position: relative;
    padding: 8px 13px;
    border: 1px solid rgba(16,21,45,.15);
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.2;
    color: #666875;
    background: transparent;
    overflow: hidden;
    cursor: default;
    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.curriculum-focus li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e54832;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    z-index: -1;
}

.curriculum-focus li span {
    position: relative;
    z-index: 2;
}

.curriculum-focus li:hover {
    color: #fff;
    border-color: #e54832;
    transform: translateY(-3px);
}

.curriculum-focus li:hover::before {
    transform: scaleX(1);
}

/* =====================================================
   APPROACH
===================================================== */

.curriculum-image-approach {

    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 70px;

    align-items: center;

    margin-top: 10px;

    padding: 70px 0;

    border-bottom: 1px solid rgba(16,21,45,.18);

}


.curriculum-approach-number {

    font-family: "Playfair Display", serif;

    font-size: 100px;

    line-height: .85;

    font-style: italic;

    color: #e54832;

}


.curriculum-image-approach > div:last-child > span {

    display: block;

    margin-bottom: 13px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

    color: #e54832;

}


.curriculum-image-approach h3 {

    margin: 0 0 20px;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -.055em;

}


.curriculum-image-approach h3 em {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #e54832;

}


.curriculum-image-approach p {

    max-width: 760px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #666875;

}


/* =====================================================
   NOTE
===================================================== */

.curriculum-image-note {

    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 30px;

    padding: 27px 0;

}


.curriculum-image-note > span {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .18em;

    color: #e54832;

}


.curriculum-image-note p {

    max-width: 800px;

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .curriculum-image-section {

        padding: 95px 5vw 100px;

    }


    .curriculum-image-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .curriculum-image-item {

        grid-template-columns: 60px 1fr;

        gap: 30px;

        align-items: start;

    }


    .curriculum-image-photo {

        grid-column: 2;

    }


    .curriculum-image-content {

        grid-column: 2;

    }


    .curriculum-image-approach {

        grid-template-columns: 150px 1fr;

        gap: 40px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .curriculum-image-section {

        padding: 72px 20px 80px;

    }


    .curriculum-image-intro {

        margin-bottom: 65px;

    }


    .curriculum-image-label {

        margin-bottom: 22px;

        font-size: 11px;

    }


    .curriculum-image-heading h2 {

        font-size: 47px;

        line-height: .97;

    }


    .curriculum-image-line {

        margin: 30px 0 20px;

    }


    .curriculum-image-tagline {

        font-size: 14px;

    }


    .curriculum-image-intro-copy p {

        font-size: 15px;

        line-height: 1.7;

    }


    /* ITEM */

    .curriculum-image-item {

        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 45px 0;

    }


    .curriculum-image-number {

        font-size: 38px;

    }


    .curriculum-image-photo {

        grid-column: 2;

        aspect-ratio: 4 / 3;

    }


    .curriculum-image-content {

        grid-column: 2;

    }


    .curriculum-image-content > span {

        margin-bottom: 9px;

        font-size: 7px;

    }


    .curriculum-image-content h3 {

        margin-bottom: 17px;

        font-size: 29px;

        line-height: 1.05;

    }


    .curriculum-image-content > p {

        font-size: 15px;

        line-height: 1.7;

    }


    .curriculum-focus {

        margin-top: 22px;

        padding-top: 16px;

    }


    .curriculum-focus li {

        font-size: 11px;

        padding: 6px 8px;

    }


    /* APPROACH */

    .curriculum-image-approach {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 60px;

        padding: 45px 0;

    }


    .curriculum-approach-number {

        font-size: 72px;

    }


    .curriculum-image-approach h3 {

        font-size: 40px;

    }


    .curriculum-image-approach p {

        font-size: 15px;

        line-height: 1.7;

    }


    /* NOTE */

    .curriculum-image-note {

        grid-template-columns: 1fr;

        gap: 10px;

        padding: 22px 0;

    }


    .curriculum-image-note p {

        font-size: 14px;

    }

}



/* =========================================================
   HOW IT WORKS — PREMIUM EDITORIAL SECTION
========================================================= */

.how-it-works {
    position: relative;
    background: #10152d;
    color: #ffffff;
    padding: 125px 6vw 130px;
    overflow: hidden;
}

.how-container {
    width: min(1280px, 100%);
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.how-intro {
    margin-bottom: 95px;
}

.how-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 32px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .20em;

    color: #ffffff;
}

.how-label span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #e54832;
}


.how-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    gap: 90px;

    align-items: end;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.how-heading h2 {
    margin: 0;

    max-width: 720px;

    font-size: clamp(65px, 5.5vw, 72px);
    line-height: .95;

    letter-spacing: -.065em;

    font-weight:400;

    color: #ffffff;
}

.how-heading h2 em {
    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;
    font-weight: 500;

    color: #e54832;
}


.how-heading-line {
    width: 100%;

    height: 1px;

    margin-top: 38px;

    background: rgba(255,255,255,.18);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.how-intro-copy {
    max-width: 570px;
}

.how-intro-copy p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255,255,255,.68);
}


/* =========================================================
   PROCESS
========================================================= */

.how-process {
    border-top: 1px solid rgba(255,255,255,.18);
}


/* =========================================================
   STEP
========================================================= */

.how-step {
    display: grid;

    grid-template-columns: 100px 1fr 40px;

    gap: 50px;

    align-items: start;

    padding: 58px 0 62px;

    border-bottom: 1px solid rgba(255,255,255,.15);

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.how-step.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   NUMBER
========================================================= */

.how-number {
    font-family: "Playfair Display", serif;

    font-size: 62px;

    line-height: 1;

    font-style: italic;

    font-weight: 500;

    color: #e54832;

    transition: transform .35s ease;
}

.how-step:hover .how-number {
    transform: translateX(8px);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.how-step-content {
    max-width: 760px;
}

.how-step-label {
    margin-bottom: 14px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .20em;

    color: rgba(255,255,255,.42);
}


.how-step-content h3 {
    margin: 0 0 20px;

    max-width: 760px;

    font-size: clamp(32px, 3.3vw, 48px);

    line-height: 1.05;

    letter-spacing: -.045em;

    font-weight: 600;

    color: #ffffff;
}

.how-step-content h3 em {
    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #e54832;
}


.how-step-content p {
    max-width: 680px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,.63);
}


/* =========================================================
   ARROW
========================================================= */

.how-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    font-size: 18px;

    color: #ffffff;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.how-step:hover .how-arrow {
    background: #e54832;

    border-color: #e54832;

    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .how-it-works {
        padding: 95px 5vw 100px;
    }

    .how-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .how-intro {
        margin-bottom: 75px;
    }

    .how-step {
        grid-template-columns: 75px 1fr 35px;

        gap: 30px;

        padding: 50px 0 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .how-it-works {
        padding: 72px 20px 80px;
    }

    .how-intro {
        margin-bottom: 60px;
    }

    .how-label {
        margin-bottom: 22px;

        font-size: 9px;
    }

    .how-intro-grid {
        gap: 28px;
    }

    .how-heading h2 {
        font-size: 46px;

        line-height: .98;
    }

    .how-heading-line {
        margin-top: 28px;
    }

    .how-intro-copy p {
        font-size: 13px;

        line-height: 1.75;
    }


    /* PROCESS */

    .how-step {
        display: grid;

        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 38px 0 42px;
    }


    .how-number {
        font-size: 42px;
    }


    .how-step-content {
        max-width: none;
    }


    .how-step-label {
        margin-bottom: 9px;

        font-size: 7px;

        letter-spacing: .17em;
    }


    .how-step-content h3 {
        margin-bottom: 17px;

        font-size: 27px;

        line-height: 1.08;
    }


    .how-step-content p {
        font-size: 13px;

        line-height: 1.7;
    }


    /* HIDE ARROW ON MOBILE */

    .how-arrow {
        display: none;
    }

}


/* =====================================================
   MODERN PRICING SECTION
===================================================== */

.pricing-modern {

    position: relative;

    width: 100%;

    min-height: 900px;

    padding: 95px 20px 100px;

    overflow: hidden;

    background: #050711;

    color: #ffffff;

}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.pricing-bg-image {

    position: absolute;

    top: 0;
    right: 0;

    width: 52%;
    height: 100%;

    background-image:
        url("assets/pricing-bg.jpg");

    background-size: cover;
    background-position: center;

    opacity: 0.48;

    z-index: 0;

}


/* DARK OVERLAY */

.pricing-bg-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            #050711 0%,
            rgba(5,7,17,0.96) 38%,
            rgba(5,7,17,0.80) 65%,
            rgba(5,7,17,0.58) 100%
        );

}


/* =====================================================
   CONTAINER
===================================================== */

.pricing-modern-container {

    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    margin: 0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.pricing-modern-header {

    text-align: center;

    max-width: 950px;

    margin: 0 auto 65px;

}


/* LABEL */

.pricing-modern-label {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .20em;

    color: rgba(255,255,255,.55);

}


.pricing-modern-label span {

    width: 7px;
    height: 7px;

    background: #e54832;

    border-radius: 50%;

}


/* =====================================================
   HEADING
===================================================== */

.pricing-modern-header h2 {

    margin: 0;

    font-size: clamp(38px, 5vw, 62px);

    line-height: .95;

    letter-spacing: -.065em;

    font-weight: 600;

    color: #ffffff;

}


.pricing-modern-header h2 em {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 500;

    color: #e54832;

}


/* DESCRIPTION */

.pricing-modern-header > p {

    max-width: 760px;

    margin: 28px auto 0;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(255,255,255,.65);

}


.pricing-modern-header > p strong {

    color: #ffffff;

}


/* =====================================================
   PRICING CARD
===================================================== */

.pricing-modern-card {

    width: min(720px, 100%);

    margin: 0 auto;

    padding: 42px 46px 38px;

    background:

        linear-gradient(
            135deg,
            rgba(15,21,45,.92),
            rgba(8,12,27,.88)
        );

    border: 1px solid rgba(229,72,50,.65);

    border-radius: 28px;

    box-shadow:

        0 35px 90px rgba(0,0,0,.45),

        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    opacity: 0;

    transform: translateY(45px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}


.pricing-modern-card.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   BADGES
===================================================== */

.pricing-badges {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

}


.pricing-badge {

    display: inline-flex;

    align-items: center;

    min-height: 32px;

    padding: 0 15px;

    border-radius: 50px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .14em;

}


/* COHORT */

.pricing-badge.cohort {

    color: #e54832;

    border: 1px solid rgba(229,72,50,.45);

    background: rgba(229,72,50,.06);

}


/* PRICE */

.pricing-badge.price-tag {

    color: #ffffff;

    background: #e54832;

    border: 1px solid #e54832;

}


/* =====================================================
   CARD TITLE
===================================================== */

.pricing-card-title {

    margin-bottom: 12px;

    font-size: 26px;

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -.025em;

    color: #ffffff;

}


/* =====================================================
   PRICE
===================================================== */

.pricing-price {

    font-family: "Playfair Display", serif;

    font-size: 44px;

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 400;

    color: #ffffff;

}


.pricing-price-note {

    margin-top: 16px;

    font-size: 12px;

    line-height: 1.5;

    color: #e54832;

    font-weight: 600;

}


/* =====================================================
   INCLUDES
===================================================== */

.pricing-includes {

    margin-top: 38px;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,.12);

}


.pricing-includes-title {

    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .20em;

    color: rgba(255,255,255,.45);

}


.pricing-includes ul {

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 35px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.pricing-includes li {

    display: grid;

    grid-template-columns: 15px 1fr;

    gap: 9px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

}


.pricing-includes li:nth-last-child(-n+2) {

    border-bottom: none;

}


.pricing-includes li > span {

    color: #e54832;

    font-size: 15px;

    line-height: 1.4;

}


.pricing-includes li p {

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255,255,255,.68);

}


/* =====================================================
   CTA
===================================================== */
/* =====================================================
   PRICING CTA — PILL STYLE
===================================================== */

.pricing-modern-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    height: 64px;

    margin-top: 32px;

    padding: 6px 7px 6px 30px;

    box-sizing: border-box;

    background: #e54832;

    color: #ffffff;

    border-radius: 100px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: -.01em;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}


/* TEXT */

.pricing-modern-cta span {

    position: relative;

    z-index: 2;

}


/* CIRCLE ARROW */

.pricing-modern-cta i {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #10152d;

    font-size: 21px;

    font-style: normal;

    line-height: 1;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}


/* HOVER */

.pricing-modern-cta:hover {

    background: #c8321d;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(229,72,50,.25);

}


.pricing-modern-cta:hover i {

    transform: translateX(5px);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pricing-modern-cta {

        height: 58px;

        padding-left: 21px;

        padding-right: 6px;

        margin-top: 27px;

        font-size: 13px;

    }


    .pricing-modern-cta i {

        width: 46px;

        height: 46px;

        font-size: 19px;

    }

}

/* =====================================================
   BOTTOM NOTE
===================================================== */

.pricing-card-note {

    margin-top: 25px;

    padding-top: 23px;

    border-top: 1px solid rgba(255,255,255,.10);

}


.pricing-card-note strong {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    color: #ffffff;

}


.pricing-card-note p {

    max-width: 620px;

    margin: 0;

    font-size: 12px;

    line-height: 1.7;

    color: rgba(255,255,255,.48);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .pricing-modern {

        min-height: auto;

        padding: 85px 20px 90px;

    }


    .pricing-bg-image {

        width: 65%;

        opacity: .30;

    }


    .pricing-modern-header {

        margin-bottom: 50px;

    }


    .pricing-modern-header h2 {

        font-size: clamp(44px, 8vw, 65px);

    }


    .pricing-modern-card {

        padding: 38px 35px 34px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pricing-modern {

        padding: 65px 18px 75px;

    }


    .pricing-bg-image {

        width: 100%;

        opacity: .22;

        background-position: center;

    }


    .pricing-bg-overlay {

        background:

            linear-gradient(
                180deg,
                rgba(5,7,17,.92) 0%,
                rgba(5,7,17,.94) 100%
            );

    }


    /* HEADER */

    .pricing-modern-header {

        margin-bottom: 38px;

    }


    .pricing-modern-label {

        margin-bottom: 18px;

        font-size: 8px;

    }


    .pricing-modern-header h2 {

        font-size: 43px;

        line-height: .98;

    }


    .pricing-modern-header > p {

        margin-top: 22px;

        font-size: 13px;

        line-height: 1.7;

    }


    /* CARD */

    .pricing-modern-card {

        padding: 28px 22px 25px;

        border-radius: 22px;

    }


    /* BADGES */

    .pricing-badges {

        flex-wrap: wrap;

        gap: 7px;

        margin-bottom: 25px;

    }


    .pricing-badge {

        min-height: 29px;

        padding: 0 11px;

        font-size: 7px;

    }


    /* TITLE */

    .pricing-card-title {

        font-size: 21px;

    }


    /* PRICE */

    .pricing-price {

        font-size: 34px;

    }


    .pricing-price-note {

        margin-top: 13px;

        font-size: 10px;

    }


    /* INCLUDES */

    .pricing-includes {

        margin-top: 30px;

        padding-top: 23px;

    }


    .pricing-includes ul {

        display: block;

    }


    .pricing-includes li {

        padding: 12px 0;

    }


    .pricing-includes li:nth-last-child(-n+2) {

        border-bottom: 1px solid rgba(255,255,255,.08);

    }


    .pricing-includes li:last-child {

        border-bottom: none;

    }


    .pricing-includes li p {

        font-size: 14px;

        line-height: 1.55;

    }


    /* CTA */

    .pricing-modern-cta {

        min-height: 56px;

        margin-top: 27px;

        padding-left: 20px;

        font-size: 13px;

    }


    .pricing-modern-cta i {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }


    /* NOTE */

    .pricing-card-note {

        margin-top: 22px;

        padding-top: 20px;

    }


    .pricing-card-note strong {

        font-size: 12px;

    }


    .pricing-card-note p {

        font-size: 11px;

        line-height: 1.65;

    }

}

/* =========================================================
   ARTISTE 360 FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #101f24;
    color: #ffffff;
    padding: 70px 5.5vw 0;
    overflow: hidden;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 40px;
    align-items: start;
}


/* ---------------------------------------------------------
   FOOTER HEADINGS
--------------------------------------------------------- */

.footer-column h3 {
    margin: 0 0 48px;
    font-family: "DM Sans", sans-serif;
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}


/* ---------------------------------------------------------
   FOOTER TEXT
--------------------------------------------------------- */

.footer-column p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
    color: rgba(255,255,255,.94);
}


/* ---------------------------------------------------------
   STUDIO HOURS
--------------------------------------------------------- */

.footer-hours {
    grid-column: 1;
    grid-row: 1;
}

.footer-hours p {
    margin-top: 0;
}


/* ---------------------------------------------------------
   FOLLOW US
--------------------------------------------------------- */

.footer-social {
    grid-column: 2;
    grid-row: 1;
}

.footer-social h3 {
    margin-bottom: 48px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;
    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1;

    transition: opacity .3s ease,
                transform .3s ease;
}

.footer-social a:hover {
    opacity: .7;
    transform: translateX(4px);
}

.footer-social svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social svg circle:last-child {
    fill: currentColor;
    stroke: none;
}


/* ---------------------------------------------------------
   ADDRESS
--------------------------------------------------------- */

.footer-address {
    grid-column: 1;
    grid-row: 2;
}

.footer-address h3 {
    margin-bottom: 38px;
}


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */

.footer-contact {
    grid-column: 2;
    grid-row: 2;
}

.footer-contact h3 {
    margin-bottom: 38px;
}

.footer-contact a {
    display: block;
    width: fit-content;

    margin-bottom: 16px;

    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.4;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: opacity .3s ease;
}

.footer-contact a:hover {
    opacity: .65;
}


/* ---------------------------------------------------------
   GOOGLE MAP
--------------------------------------------------------- */

.footer-map {
    grid-column: 3;
    grid-row: 1 / span 2;

    width: 100%;
    height: 265px;

    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ---------------------------------------------------------
   BOTTOM LINE
--------------------------------------------------------- */

.footer-bottom {
    max-width: 1240px;
    margin: 75px auto 0;

    padding: 20px 0 25px;

    border-top: 1px solid rgba(255,255,255,.22);
}

.footer-bottom p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: .05em;
    color: rgba(255,255,255,.55);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .site-footer {
        padding: 65px 5vw 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        column-gap: 50px;
        row-gap: 55px;
    }

    .footer-hours {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-social {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-address {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-contact {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-map {
        grid-column: 1 / span 2;
        grid-row: 3;

        height: 300px;
    }

    .footer-bottom {
        margin-top: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .site-footer {
        padding: 55px 22px 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-hours,
    .footer-social,
    .footer-address,
    .footer-contact,
    .footer-map {
        grid-column: 1;
        grid-row: auto;
    }


    .footer-column h3 {
        margin-bottom: 22px;
        font-size: 23px;
    }

    .footer-column p {
        font-size: 15px;
        line-height: 1.75;
    }

    .footer-social a {
        font-size: 16px;
    }

    .footer-social svg {
        width: 21px;
        height: 21px;
    }

    .footer-contact a {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .footer-map {
        height: 240px;
        margin-top: 5px;
    }

    .footer-bottom {
        margin-top: 50px;
        padding: 18px 0 22px;
    }

    .footer-bottom p {
        font-size: 9px;
        line-height: 1.5;
    }
}


/* =========================================================
   MOBILE FLOATING WHATSAPP + CALL
========================================================= */

.mobile-floating-actions {
    display: none;
}


/* =========================================================
   MOBILE ONLY
========================================================= */

@media (max-width: 768px) {

    .mobile-floating-actions {

        position: fixed;

        right: 18px;
        bottom: 20px;

        z-index: 9999;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 10px;
    }


    .mobile-floating-actions a {

        width: 52px;
        height: 52px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        box-shadow:
            0 8px 25px rgba(0,0,0,0.25);

        transition:
            transform .25s ease,
            box-shadow .25s ease;
    }


    .mobile-floating-actions a:hover {

        transform: translateY(-3px);

        box-shadow:
            0 12px 30px rgba(0,0,0,0.30);
    }


    /* WhatsApp */

    .floating-whatsapp {

        background: #25D366;
        color: #ffffff;
    }


    /* Call */

    .floating-call {

        background: #E23E25;
        color: #ffffff;
    }


    .mobile-floating-actions svg {

        width: 24px;
        height: 24px;

        fill: currentColor;
    }

}


/* Smaller phones */

@media (max-width: 420px) {

    .mobile-floating-actions {

        right: 14px;
        bottom: 16px;

        gap: 8px;
    }


    .mobile-floating-actions a {

        width: 48px;
        height: 48px;
    }


    .mobile-floating-actions svg {

        width: 22px;
        height: 22px;
    }

}