/* =========================================================
   NEWITT MEDIA
   MASTER WEBSITE STYLESHEET
   PHASE 1.1 CINEMATIC BACKGROUND EDITION
   ========================================================= */

:root {
    --black: #030508;
    --black-two: #070b11;
    --panel: rgba(7, 12, 19, 0.84);

    --white: #f7f9fc;
    --silver: #d7dde6;
    --silver-bright: #ffffff;
    --muted: #b8c3d1;
    --dim: #7f8a97;

    --sky-blue: #168cff;
    --sky-blue-light: #59b9ff;
    --sky-blue-bright: #8bd3ff;

    --paranormal-red: #d91f32;
    --paranormal-red-light: #ff4a5d;
    --paranormal-red-bright: #ff7180;

    --line: rgba(215, 221, 230, 0.20);
    --line-soft: rgba(215, 221, 230, 0.10);

    --shadow: 0 24px 70px rgba(0,0,0,0.48);
    --shadow-heavy: 0 30px 90px rgba(0,0,0,0.68);
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--white);
    background: #000;

    overflow-x: hidden;
}


/* =========================================================
   CINEMATIC BACKGROUND
   Scenery remains visible at the sides.
   Centre fades to deep black for readability.
   ========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(3, 7, 14, 0.25) 0%,
            rgba(3, 7, 14, 0.48) 20%,
            rgba(0, 0, 0, 0.94) 42%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0.94) 58%,
            rgba(3, 7, 14, 0.48) 80%,
            rgba(3, 7, 14, 0.25) 100%
        ),
        url("background.png.PNG")
        center / cover
        no-repeat;

    transform: scale(1.02);
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.42) 42%,
            rgba(0, 0, 0, 0.62) 55%,
            rgba(0, 0, 0, 0.20) 80%,
            rgba(0, 0, 0, 0.05) 100%
        );
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    touch-action: manipulation;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(3, 6, 12, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid
        var(--line-soft);
}

.nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;
}

.nav-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 18px;
    font-weight: 900;

    letter-spacing: 1px;

    white-space: nowrap;

    text-shadow:
        0 0 12px
        rgba(255,255,255,0.18);
}

.nav-brand img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    background: transparent;
    border: none;

    filter:
        drop-shadow(
            0 0 10px
            rgba(255,255,255,0.16)
        );
}

.nav-brand span {
    color: var(--silver-bright);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 6px;
}

.nav-links a {
    position: relative;

    padding: 12px 15px;

    border-radius: 11px;

    color: #dfe7f2;

    font-size: 14px;
    font-weight: 800;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;

    background:
        rgba(215,221,230,0.10);

    transform:
        translateY(-1px);
}

.nav-links a.active {
    color: #ffffff;

    background:
        rgba(215,221,230,0.10);
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;

    bottom: 5px;

    height: 2px;

    border-radius: 2px;

    background:
        linear-gradient(
            90deg,
            var(--silver),
            #ffffff
        );
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    min-height: 42px;

    padding: 10px 15px;

    border:
        1px solid
        rgba(215,221,230,0.30);

    border-radius: 11px;

    background:
        rgba(215,221,230,0.08);

    color: #ffffff;

    font:
        800 13px
        Arial,
        sans-serif;

    letter-spacing: 0.05em;

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero,
.page-hero {
    padding:
        92px 0 70px;

    text-align: center;
}

.hero-card,
.panel,
.about {
    border:
        1px solid
        var(--line);

    border-radius: 24px;

    background:
        rgba(3, 6, 10, 0.76);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        var(--shadow);
}

.hero-card {
    width:
        min(900px,100%);

    margin:
        0 auto;

    padding:
        54px 36px;
}


/* =========================================================
   HERO LOGO
   ========================================================= */

.hero-logo {
    width: 220px;
    height: 220px;

    max-width: 62vw;

    object-fit: contain;

    margin:
        0 auto 26px;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 18px
            rgba(89,185,255,0.18)
        )
        drop-shadow(
            0 10px 25px
            rgba(0,0,0,0.50)
        );
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    color:
        var(--silver);

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        2px;

    text-transform:
        uppercase;
}

h1 {
    margin:
        12px 0 18px;

    font-size:
        clamp(40px,8vw,82px);

    line-height:
        0.95;

    font-weight:
        950;

    letter-spacing:
        -3px;
}

h2 {
    margin:
        0 0 14px;

    font-size:
        clamp(30px,5vw,52px);

    line-height:
        1.05;
}

h3 {
    margin:
        10px 0;
}

h1 span,
h2 span {
    color:
        var(--silver-bright);
}

p {
    color:
        var(--muted);

    line-height:
        1.75;
}

.hero-tagline {
    color:
        var(--silver-bright);

    font-weight:
        900;

    letter-spacing:
        1.5px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
    padding:
        75px 0;
}

.section-heading {
    width:
        min(820px,100%);

    margin:
        0 auto 34px;

    text-align:
        center;
}

.section-heading p {
    max-width:
        720px;

    margin-left:
        auto;

    margin-right:
        auto;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        stretch;

    justify-content:
        center;

    gap:
        12px;

    margin-top:
        26px;
}

.button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        48px;

    padding:
        12px 20px;

    border:
        1px solid
        rgba(215,221,230,0.25);

    border-radius:
        12px;

    background:
        rgba(215,221,230,0.07);

    color:
        var(--white);

    font-size:
        13px;

    font-weight:
        900;

    text-align:
        center;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--silver-bright);

    background:
        rgba(255,255,255,0.11);
}

.button.primary {
    background:
        linear-gradient(
            135deg,
            #e8edf3,
            #9fa9b6
        );

    color:
        #030508;

    border-color:
        #ffffff;
}

.hero-buttons .button {
    flex:
        1 1 230px;
}


/* =========================================================
   BRAND GRID
   ========================================================= */

.brand-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap:
        20px;

    align-items:
        stretch;
}


/* =========================================================
   BRAND CARDS
   ========================================================= */

.brand-card {
    min-width:
        0;

    padding:
        26px;

    display:
        flex;

    flex-direction:
        column;

    border:
        1px solid
        var(--line);

    border-radius:
        20px;

    overflow:
        hidden;

    background:
        rgba(5,10,17,0.82);

    box-shadow:
        var(--shadow);
}

.brand-logo {
    width:
        135px;

    height:
        115px;

    object-fit:
        contain;

    margin:
        0 auto 18px;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,255,255,0.10)
        )
        drop-shadow(
            0 8px 18px
            rgba(0,0,0,0.40)
        );
}

.brand-card p {
    margin-bottom:
        22px;
}

.brand-card .button {
    width:
        100%;

    margin-top:
        auto;
}


/* =========================================================
   SOCIAL HUB
   ========================================================= */

.social-hub {
    position:
        relative;

    isolation:
        isolate;

    overflow:
        hidden;

    padding:
        0;

    background:
        #020307;
}

.social-hub-art {
    position:
        absolute;

    inset:
        0;

    z-index:
        -3;

    background:
        url("newitt-social-hub-background-optimized.PNG")
        center top / cover
        no-repeat;

    background-attachment:
        scroll;
}

.social-hub-shade {
    position:
        absolute;

    inset:
        0;

    z-index:
        -2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.14) 0%,
            rgba(0,0,0,0.18) 28%,
            rgba(0,0,0,0.72) 62%,
            rgba(0,0,0,0.96) 100%
        );
}

.social-hub-content {
    padding:
        92px 0 54px;
}


/* =========================================================
   SOCIAL INTRO
   ========================================================= */

.social-intro {
    max-width:
        1080px;

    margin:
        0 auto 44px;

    text-align:
        center;
}

.social-kicker {
    color:
        #4eb4ff;

    font-size:
        clamp(13px,1.8vw,20px);

    font-weight:
        950;

    letter-spacing:
        3px;

    text-transform:
        uppercase;

    text-shadow:
        0 0 18px
        rgba(22,140,255,0.75);
}

.social-main-title {
    margin:
        12px auto 18px;

    max-width:
        1050px;

    font-size:
        clamp(40px,6.5vw,82px);

    line-height:
        0.93;

    font-weight:
        950;

    letter-spacing:
        -2px;

    text-transform:
        uppercase;

    color:
        #ffffff;

    text-shadow:
        0 4px 0
        rgba(0,0,0,0.55),

        0 0 24px
        rgba(255,255,255,0.16);
}

.social-main-title span {
    display:
        block;

    margin-top:
        4px;

    background:
        linear-gradient(
            90deg,
            #58baff 0%,
            #8dd9ff 45%,
            #ff7180 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.social-category-line {
    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    align-items:
        center;

    gap:
        9px 13px;

    max-width:
        1000px;

    margin:
        0 auto;

    color:
        #ffffff;

    font-size:
        clamp(10px,1.3vw,16px);

    font-weight:
        900;

    letter-spacing:
        1.2px;

    text-transform:
        uppercase;

    text-shadow:
        0 2px 8px
        #000;
}

.social-category-line b {
    color:
        #45adff;

    text-shadow:
        0 0 12px
        #168cff;
}

.social-funny {
    max-width:
        760px;

    margin:
        20px auto 0;

    color:
        #dce5f0;

    font-size:
        clamp(14px,1.8vw,20px);

    text-shadow:
        0 2px 10px
        #000;
}


/* =========================================================
   SOCIAL BRAND CARDS
   ========================================================= */

.social-brand-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        22px;

    max-width:
        1100px;

    margin:
        0 auto;
}

.social-brand {
    position:
        relative;

    overflow:
        hidden;

    border-radius:
        24px;

    background:
        rgba(2,5,9,0.76);

    backdrop-filter:
        blur(5px);

    -webkit-backdrop-filter:
        blur(5px);

    box-shadow:
        0 18px 55px
        rgba(0,0,0,0.65),

        inset 0 0 35px
        rgba(0,0,0,0.48);
}

.social-brand::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    opacity:
        0.42;
}

.skyline-social {
    border:
        2px solid
        #168cff;

    box-shadow:
        0 0 10px
        rgba(22,140,255,0.75),

        0 0 32px
        rgba(22,140,255,0.42),

        inset 0 0 35px
        rgba(22,140,255,0.08);
}

.skyline-social::before {
    background:
        linear-gradient(
            90deg,
            rgba(0,90,190,0.24),
            transparent 55%
        ),

        radial-gradient(
            circle at 88% 40%,
            rgba(22,140,255,0.30),
            transparent 35%
        );
}

.paranormal-social {
    border:
        2px solid
        #ff3348;

    box-shadow:
        0 0 10px
        rgba(255,31,50,0.75),

        0 0 32px
        rgba(255,31,50,0.40),

        inset 0 0 35px
        rgba(255,31,50,0.08);
}

.paranormal-social::before {
    background:
        linear-gradient(
            90deg,
            rgba(150,0,18,0.22),
            transparent 55%
        ),

        radial-gradient(
            circle at 88% 40%,
            rgba(255,31,50,0.30),
            transparent 35%
        );
}

.social-brand-inner {
    position:
        relative;

    z-index:
        1;

    min-height:
        300px;

    padding:
        24px;

    display:
        grid;

    grid-template-columns:
        250px minmax(0,1fr);

    align-items:
        center;

    gap:
        28px;
}

.social-logo-wrap {
    display:
        grid;

    place-items:
        center;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;
}

.social-logo-wrap img {
    width:
        170px;

    height:
        170px;

    object-fit:
        contain;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 16px
            rgba(255,255,255,0.12)
        )

        drop-shadow(
            0 10px 24px
            rgba(0,0,0,0.58)
        );
}

.social-brand-content {
    min-width:
        0;
}

.social-brand-name {
    font-size:
        clamp(44px,5.3vw,78px);

    line-height:
        0.85;

    font-weight:
        950;

    letter-spacing:
        -2px;

    text-transform:
        uppercase;
}

.blue-text {
    color:
        #00a8ff;

    text-shadow:
        0 0 12px
        rgba(0,168,255,0.8),

        0 3px 0
        rgba(0,48,110,0.9);
}

.red-text {
    color:
        #ff303c;

    text-shadow:
        0 0 12px
        rgba(255,48,60,0.8),

        0 3px 0
        rgba(110,0,10,0.9);
}

.social-brand-content h3 {
    margin:
        6px 0 12px;

    font-size:
        clamp(34px,4.3vw,62px);

    line-height:
        0.92;

    font-weight:
        950;

    letter-spacing:
        -1.5px;

    text-transform:
        uppercase;

    color:
        #ffffff;

    text-shadow:
        0 3px 0
        rgba(0,0,0,0.8),

        0 0 18px
        rgba(255,255,255,0.12);
}

.social-brand-content p {
    margin:
        0 0 18px;

    color:
        #dfe8f2;

    font-size:
        clamp(11px,1.3vw,15px);

    font-weight:
        900;

    letter-spacing:
        1.2px;

    text-transform:
        uppercase;
}

.social-brand-content p span {
    margin:
        0 6px;

    color:
        #ffffff;
}


/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */

.social-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;
}

.social-button {
    min-width:
        170px;

    min-height:
        54px;

    padding:
        11px 22px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    border-radius:
        12px;

    background:
        rgba(3,5,9,0.84);

    color:
        #ffffff;

    font-size:
        17px;

    font-weight:
        950;

    border:
        1px solid
        currentColor;

    box-shadow:
        inset 0 0 18px
        rgba(255,255,255,0.03);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.social-button:hover {
    transform:
        translateY(-3px)
        scale(1.015);

    background:
        rgba(255,255,255,0.08);
}

.skyline-button {
    border-color:
        #00a8ff;

    box-shadow:
        0 0 10px
        rgba(0,168,255,0.5),

        inset 0 0 14px
        rgba(0,168,255,0.08);
}

.paranormal-button {
    border-color:
        #ff263c;

    box-shadow:
        0 0 10px
        rgba(255,38,60,0.45),

        inset 0 0 14px
        rgba(255,38,60,0.08);
}

.social-icon {
    width:
        30px;

    height:
        30px;

    display:
        inline-grid;

    place-items:
        center;

    border-radius:
        8px;

    font-size:
        20px;

    font-weight:
        950;

    flex:
        0 0 30px;
}

.tiktok-icon {
    color:
        #ffffff;

    text-shadow:
        2px 0 #25f4ee,
        -2px 0 #fe2c55;
}

.youtube-icon {
    color:
        #ffffff;

    background:
        #ff0000;

    font-size:
        14px;
}

.instagram-icon {
    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #7b2cff,
            #ff2d55,
            #ffb52e
        );
}

.facebook-icon {
    color:
        #ffffff;

    background:
        #1877f2;
}


/* =========================================================
   SOCIAL TICKER
   ========================================================= */

.social-ticker {
    position:
        relative;

    width:
        100%;

    overflow:
        hidden;

    border-top:
        2px solid
        #158cff;

    border-bottom:
        2px solid
        #158cff;

    background:
        linear-gradient(
            180deg,
            rgba(0,17,40,0.96),
            rgba(1,5,14,0.98)
        );

    box-shadow:
        0 0 16px
        rgba(22,140,255,0.55),

        inset 0 0 20px
        rgba(22,140,255,0.12);
}

.social-ticker::before,
.social-ticker::after {
    content:
        "";

    position:
        absolute;

    top:
        0;

    bottom:
        0;

    width:
        90px;

    z-index:
        2;

    pointer-events:
        none;
}

.social-ticker::before {
    left:
        0;

    background:
        linear-gradient(
            90deg,
            #01040a,
            transparent
        );
}

.social-ticker::after {
    right:
        0;

    background:
        linear-gradient(
            270deg,
            #01040a,
            transparent
        );
}

.social-ticker-track {
    width:
        max-content;

    display:
        flex;

    align-items:
        center;

    animation:
        socialTickerMove
        20s
        linear
        infinite;
}

.social-ticker-group {
    min-height:
        72px;

    display:
        flex;

    align-items:
        center;

    gap:
        28px;

    padding:
        0 34px;

    white-space:
        nowrap;

    font-size:
        clamp(17px,2.1vw,30px);

    font-weight:
        950;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}

.social-ticker-group span {
    color:
        #ffffff;
}

.social-ticker-group strong {
    color:
        #39b7ff;

    text-shadow:
        0 0 10px
        rgba(57,183,255,0.8),

        0 0 25px
        rgba(57,183,255,0.35);
}

.social-ticker-group b {
    color:
        #6ecbff;

    font-size:
        1.1em;

    text-shadow:
        0 0 12px
        #168cff;
}

@keyframes socialTickerMove {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   FINAL SOCIAL MESSAGE
   ========================================================= */

.social-final {
    position:
        relative;

    min-height:
        430px;

    padding:
        88px 20px 70px;

    text-align:
        center;

    overflow:
        hidden;

    background:
        radial-gradient(
            circle at 8% 60%,
            rgba(0,126,255,0.30),
            transparent 34%
        ),

        radial-gradient(
            circle at 92% 60%,
            rgba(255,25,45,0.26),
            transparent 34%
        ),

        linear-gradient(
            180deg,
            #03050a,
            #010205
        );
}

.social-final::before,
.social-final::after {
    content:
        "";

    position:
        absolute;

    width:
        38%;

    height:
        70%;

    top:
        15%;

    opacity:
        0.45;

    filter:
        blur(1px);

    pointer-events:
        none;
}

.social-final::before {
    left:
        -12%;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0 14px,
            rgba(0,136,255,0.22) 15px 17px,
            transparent 18px 34px
        );

    transform:
        skewX(-18deg);
}

.social-final::after {
    right:
        -12%;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0 14px,
            rgba(255,35,55,0.22) 15px 17px,
            transparent 18px 34px
        );

    transform:
        skewX(18deg);
}

.social-final h3 {
    position:
        relative;

    z-index:
        1;

    margin:
        0 auto;

    max-width:
        900px;

    font-size:
        clamp(38px,6vw,76px);

    line-height:
        0.95;

    font-weight:
        950;

    letter-spacing:
        -2px;

    text-transform:
        uppercase;

    color:
        #ffffff;

    text-shadow:
        0 4px 0
        rgba(0,0,0,0.7);
}

.social-final h3 span {
    color:
        #ff3f56;

    text-shadow:
        0 0 16px
        rgba(255,63,86,0.6),

        0 4px 0
        rgba(100,0,10,0.65);
}

.social-final p {
    position:
        relative;

    z-index:
        1;

    margin:
        24px auto 28px;

    color:
        #cbd5e0;

    font-size:
        clamp(12px,1.6vw,18px);

    font-weight:
        900;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;
}

.social-final-logo {
    position:
        relative;

    z-index:
        1;

    width:
        145px;

    height:
        95px;

    object-fit:
        contain;

    margin:
        0 auto;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 16px
            rgba(255,255,255,0.16)
        )
        drop-shadow(
            0 10px 22px
            rgba(0,0,0,0.48)
        );
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    padding:
        32px;
}

.about p:last-child {
    margin-bottom:
        0;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-top {
    position:
        fixed;

    right:
        20px;

    bottom:
        20px;

    z-index:
        1500;

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(215,221,230,0.30);

    border-radius:
        50%;

    background:
        rgba(5,8,12,0.90);

    color:
        #ffffff;

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    cursor:
        pointer;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.back-top.show {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}

.back-top:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255,255,255,0.10);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding:
        45px 20px 55px;

    text-align:
        center;

    border-top:
        1px solid
        var(--line-soft);

    color:
        #69737b;

    font-size:
        10px;

    line-height:
        1.7;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:
        20px;
}

.gallery-card {
    border:
        1px solid
        var(--line);

    border-radius:
        20px;

    overflow:
        hidden;

    background:
        rgba(5,10,17,0.82);

    box-shadow:
        var(--shadow);
}

.gallery-link {
    display:
        block;

    overflow:
        hidden;

    cursor:
        pointer;
}

.gallery-card img {
    width:
        100%;

    aspect-ratio:
        16 / 10;

    object-fit:
        cover;
}

.gallery-link img {
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.gallery-link:hover img {
    transform:
        scale(1.025);

    filter:
        brightness(1.06);
}

.gallery-caption {
    padding:
        18px;
}


/* =========================================================
   SKYLINE HERO
   ========================================================= */

.skyline-hero {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        610px;

    display:
        grid;

    place-items:
        center;

    border-bottom:
        1px solid
        var(--line);
}

.skyline-hero::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(3,6,10,0.88),
            rgba(3,6,10,0.45),
            rgba(3,6,10,0.25)
        ),

        url("background.png.PNG")
        center / cover
        no-repeat;
}

.skyline-hero-content {
    position:
        relative;

    z-index:
        1;

    width:
        min(1100px,92%);

    display:
        grid;

    grid-template-columns:
        210px minmax(0,1fr);

    gap:
        40px;

    align-items:
        center;
}

.skyline-hero-content > div:first-child {
    display:
        grid;

    place-items:
        center;
}

.skyline-hero-content .page-logo {
    width:
        145px;

    height:
        145px;

    object-fit:
        contain;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 16px
            rgba(22,140,255,0.18)
        )
        drop-shadow(
            0 10px 22px
            rgba(0,0,0,0.48)
        );
}

.skyline-hero p {
    max-width:
        720px;
}


/* =========================================================
   TIKTOK / COMING SOON
   ========================================================= */

.tiktok-box {
    min-height:
        260px;

    display:
        grid;

    place-items:
        center;

    margin:
        24px 0;

    border:
        1px solid
        var(--line);

    border-radius:
        18px;

    background:
        rgba(0,0,0,0.20);

    overflow:
        hidden;
}

.coming-soon {
    margin:
        30px auto;

    padding:
        28px;

    border:
        1px solid
        var(--line-soft);

    border-radius:
        18px;

    background:
        rgba(0,0,0,0.20);

    text-align:
        center;
}

.coming-soon h3 {
    margin-top:
        0;

    font-size:
        24px;
}


/* =========================================================
   CONTACT PANEL
   ========================================================= */

.contact-panel {
    width:
        min(1000px,100%);

    margin:
        0 auto;

    padding:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    border:
        1px solid
        var(--line);

    border-radius:
        22px;

    background:
        rgba(3,6,10,0.78);

    box-shadow:
        var(--shadow);
}

.contact-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        flex-end;

    gap:
        10px;

    flex-shrink:
        0;
}


/* =========================================================
   CONTACT / PAGE LOGOS
   ========================================================= */

.paranormal-page-logo {
    width:
        170px;

    height:
        170px;

    max-width:
        65vw;

    object-fit:
        contain;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 18px
            rgba(255,31,50,0.18)
        )
        drop-shadow(
            0 10px 24px
            rgba(0,0,0,0.50)
        );
}

.photography-logo {
    width:
        155px;

    height:
        155px;

    object-fit:
        contain;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 16px
            rgba(190,210,230,0.18)
        )
        drop-shadow(
            0 10px 22px
            rgba(0,0,0,0.48)
        );
}

.contact-logo {
    width:
        155px;

    height:
        155px;

    object-fit:
        contain;

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    filter:
        drop-shadow(
            0 0 18px
            rgba(89,185,255,0.18)
        )
        drop-shadow(
            0 10px 22px
            rgba(0,0,0,0.48)
        );
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position:
        fixed;

    inset:
        0;

    z-index:
        2000;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        24px;

    background:
        rgba(0,0,0,0.92);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.lightbox.open {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}

.lightbox-image {
    display:
        block;

    width:
        auto;

    height:
        auto;

    max-width:
        min(94vw,1400px);

    max-height:
        88vh;

    object-fit:
        contain;

    border-radius:
        10px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,0.75);
}

.lightbox-close {
    position:
        fixed;

    top:
        18px;

    right:
        20px;

    z-index:
        2001;

    width:
        48px;

    height:
        48px;

    border:
        1px solid
        rgba(255,255,255,0.30);

    border-radius:
        50%;

    background:
        rgba(10,14,20,0.85);

    color:
        #ffffff;

    font-size:
        25px;

    line-height:
        1;

    cursor:
        pointer;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .brand-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .social-brand-inner {
        grid-template-columns:
            190px minmax(0,1fr);
    }

    .social-logo-wrap img {
        width:
            170px;

        height:
            170px;
    }

    .skyline-hero-content {
        grid-template-columns:
            180px minmax(0,1fr);

        gap:
            25px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    body::before {
        background:
            linear-gradient(
                90deg,
                rgba(3,7,14,0.32) 0%,
                rgba(0,0,0,0.68) 25%,
                rgba(0,0,0,0.96) 42%,
                rgba(0,0,0,1) 50%,
                rgba(0,0,0,0.96) 58%,
                rgba(0,0,0,0.68) 75%,
                rgba(3,7,14,0.32) 100%
            ),
            url("background.png.PNG")
            center / cover
            no-repeat;
    }

    .container {
        width:
            90%;
    }

    .nav {
        min-height:
            68px;
    }

    .nav-brand {
        font-size:
            16px;
    }

    .nav-brand img {
        width:
            36px;

        height:
            36px;
    }

    .menu-toggle {
        display:
            block;
    }

    .nav-links {
        display:
            none;

        position:
            absolute;

        top:
            68px;

        left:
            5%;

        right:
            5%;

        width:
            90%;

        padding:
            10px;

        flex-direction:
            column;

        gap:
            5px;

        background:
            rgba(3,4,7,0.98);

        border:
            1px solid
            rgba(215,221,230,0.15);

        border-radius:
            16px;

        box-shadow:
            0 25px 60px
            rgba(0,0,0,0.72);
    }

    .nav-links.open {
        display:
            flex;
    }

    .nav-links a {
        width:
            100%;

        min-height:
            50px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        padding:
            12px;

        font-size:
            15px;
    }

    .hero,
    .page-hero {
        padding:
            70px 0 55px;
    }

    .hero-logo {
        width:
            180px;

        height:
            180px;

        max-width:
            60vw;
    }

    h1 {
        font-size:
            clamp(
                38px,
                11vw,
                58px
            );

        letter-spacing:
            -2px;
    }

    h2 {
        font-size:
            clamp(
                30px,
                8vw,
                44px
            );
    }

    .brand-grid,
    .gallery {
        grid-template-columns:
            1fr;
    }

    .brand-card {
        padding:
            25px 22px;
    }

    .brand-logo {
        width:
            130px;

        height:
            110px;
    }


    /* SOCIAL HUB */

    .social-hub-content {
        padding:
            70px 0 45px;
    }

    .social-hub-art {
        background-position:
            center top;

        background-size:
            auto 520px;
    }

    .social-hub-shade {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.20),
                rgba(0,0,0,0.50) 28%,
                rgba(0,0,0,0.92) 60%,
                rgba(0,0,0,0.98) 100%
            );
    }

    .social-intro {
        margin-bottom:
            34px;
    }

    .social-main-title {
        font-size:
            clamp(
                38px,
                10.8vw,
                58px
            );

        line-height:
            0.92;

        letter-spacing:
            -1.5px;
    }

    .social-category-line {
        font-size:
            10px;

        line-height:
            1.7;
    }

    .social-funny {
        font-size:
            14px;
    }

    .social-brand-grid {
        gap:
            18px;
    }

    .social-brand-inner {
        grid-template-columns:
            1fr;

        min-height:
            0;

        padding:
            24px 18px 22px;

        gap:
            10px;

        text-align:
            center;
    }

    .social-logo-wrap img {
        width:
            160px;

        height:
            160px;

        margin:
            0 auto;
    }

    .social-brand-name {
        font-size:
            48px;
    }

    .social-brand-content h3 {
        font-size:
            clamp(
                30px,
                8.2vw,
                46px
            );
    }

    .social-brand-content p {
        font-size:
            10px;

        line-height:
            1.7;
    }

    .social-buttons {
        display:
            grid;

        grid-template-columns:
            1fr;

        gap:
            10px;
    }

    .social-button {
        width:
            100%;

        min-width:
            0;

        min-height:
            52px;
    }


    /* MOVING BANNER */

    .social-ticker-group {
        min-height:
            62px;

        gap:
            20px;

        padding:
            0 24px;

        font-size:
            18px;
    }

    .social-ticker-track {
        animation-duration:
            15s;
    }


    /* FINAL SOCIAL SECTION */

    .social-final {
        min-height:
            390px;

        padding:
            68px 18px 55px;
    }

    .social-final h3 {
        font-size:
            clamp(
                35px,
                9.5vw,
                54px
            );

        line-height:
            0.96;
    }

    .social-final p {
        font-size:
            11px;

        line-height:
            1.7;
    }

    .social-final-logo {
        width:
            140px;

        height:
            92px;
    }


    /* CONTACT */

    .contact-panel {
        flex-direction:
            column;

        align-items:
            stretch;

        text-align:
            center;

        padding:
            28px 22px;
    }

    .contact-actions {
        justify-content:
            center;

        width:
            100%;
    }

    .contact-logo {
        width:
            155px;

        height:
            155px;
    }


    /* SKYLINE */

    .skyline-hero {
        min-height:
            540px;
    }

    .skyline-hero-content {
        width:
            90%;

        grid-template-columns:
            1fr;

        text-align:
            center;
    }

    .skyline-hero-content .page-logo {
        width:
            145px;

        height:
            145px;
    }

    .paranormal-page-logo {
        width:
            160px;

        height:
            160px;
    }

    .photography-logo {
        width:
            155px;

        height:
            155px;
    }


    /* BUTTONS */

    .buttons {
        flex-direction:
            column;

        width:
            100%;
    }

    .buttons .button {
        width:
            min(100%,360px);
    }


    /* ABOUT */

    .about {
        padding:
            26px 22px;
    }

    section {
        padding:
            60px 0;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .container {
        width:
            90%;
    }

    .nav-brand {
        font-size:
            14px;

        gap:
            7px;
    }

    .nav-brand img {
        width:
            32px;

        height:
            32px;
    }

    .menu-toggle {
        padding:
            9px 12px;

        font-size:
            12px;
    }

    .hero-logo {
        width:
            155px;

        height:
            155px;
    }

    p {
        font-size:
            14px;
    }

    .eyebrow {
        font-size:
            10px;

        letter-spacing:
            1.5px;
    }


    /* SOCIAL HUB */

    .social-hub-content {
        padding-top:
            58px;
    }

    .social-hub-art {
        background-size:
            auto 440px;
    }

    .social-main-title {
        font-size:
            36px;
    }

    .social-category-line {
        font-size:
            9px;
    }

    .social-logo-wrap img {
        width:
            145px;

        height:
            145px;
    }

    .social-brand-name {
        font-size:
            42px;
    }

    .social-brand-content h3 {
        font-size:
            29px;
    }

    .social-brand-content p {
        font-size:
            9px;
    }

    .social-ticker-group {
        min-height:
            56px;

        font-size:
            16px;

        padding:
            0 18px;

        gap:
            16px;
    }

    .social-final {
        padding-top:
            58px;
    }

    .social-final h3 {
        font-size:
            34px;
    }

    .social-final-logo {
        width:
            130px;

        height:
            85px;
    }


    /* SKYLINE */

    .skyline-hero-content .page-logo {
        width:
            125px;

        height:
            125px;
    }


    /* PARANORMAL */

    .paranormal-page-logo {
        width:
            145px;

        height:
            145px;
    }


    /* PHOTOGRAPHY */

    .photography-logo {
        width:
            140px;

        height:
            140px;
    }


    /* CONTACT */

    .contact-logo {
        width:
            140px;

        height:
            140px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding:
            12px;
    }

    .lightbox-image {
        max-width:
            96vw;

        max-height:
            82vh;
    }


    /* FOOTER */

    footer {
        padding:
            38px 18px 48px;

        font-size:
            9px;
    }
}


/* =========================================================
   LOGO SAFETY
   ========================================================= */

.hero-logo,
.brand-logo,
.page-logo,
.paranormal-page-logo,
.photography-logo,
.contact-logo,
.social-logo-wrap img,
.social-final-logo,
.nav-brand img {

    background:
        transparent !important;

    border:
        none !important;

    box-shadow:
        none !important;
}


/* =========================================================
   DESKTOP LOGO CONTROL
   ========================================================= */

@media (min-width: 801px) {

    .hero-logo {
        width:
            220px !important;

        height:
            220px !important;
    }

    .brand-logo {
        width:
            135px !important;

        height:
            115px !important;
    }

    .skyline-hero-content .page-logo {
        width:
            145px !important;

        height:
            145px !important;
    }

    .paranormal-page-logo {
        width:
            170px !important;

        height:
            170px !important;
    }

    .photography-logo {
        width:
            155px !important;

        height:
            155px !important;
    }

    .contact-logo {
        width:
            155px !important;

        height:
            155px !important;
    }

    .social-logo-wrap img {
        width:
            170px !important;

        height:
            170px !important;
    }

    .social-final-logo {
        width:
            145px !important;

        height:
            95px !important;
    }
}


/* =========================================================
   FINAL MOBILE LOGO CONTROL
   ========================================================= */

@media (max-width: 800px) {

    .nav-brand img {
        width:
            36px !important;

        height:
            36px !important;
    }

    .hero-logo {
        width:
            180px !important;

        height:
            180px !important;
    }

    .brand-logo {
        width:
            130px !important;

        height:
            110px !important;
    }

    .skyline-hero-content .page-logo {
        width:
            145px !important;

        height:
            145px !important;
    }

    .paranormal-page-logo {
        width:
            160px !important;

        height:
            160px !important;
    }

    .photography-logo {
        width:
            155px !important;

        height:
            155px !important;
    }

    .contact-logo {
        width:
            155px !important;

        height:
            155px !important;
    }

    .social-logo-wrap img {
        width:
            160px !important;

        height:
            160px !important;
    }

    .social-final-logo {
        width:
            140px !important;

        height:
            92px !important;
    }
}


/* =========================================================
   FINAL SMALL PHONE LOGO CONTROL
   ========================================================= */

@media (max-width: 480px) {

    .nav-brand img {
        width:
            32px !important;

        height:
            32px !important;
    }

    .hero-logo {
        width:
            155px !important;

        height:
            155px !important;
    }

    .brand-logo {
        width:
            120px !important;

        height:
            100px !important;
    }

    .skyline-hero-content .page-logo {
        width:
            125px !important;

        height:
            125px !important;
    }

    .paranormal-page-logo {
        width:
            145px !important;

        height:
            145px !important;
    }

    .photography-logo {
        width:
            140px !important;

        height:
            140px !important;
    }

    .contact-logo {
        width:
            140px !important;

        height:
            140px !important;
    }

    .social-logo-wrap img {
        width:
            145px !important;

        height:
            145px !important;
    }

    .social-final-logo {
        width:
            130px !important;

        height:
            85px !important;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }
}
/* =========================================================
   NEWITT MEDIA
   PHOTOGRAPHY PAGE ADD-ON
   PHASE 1
   ========================================================= */

/*
   IMPORTANT:
   This is an ADD-ON.
   Do not delete the existing CSS above.
*/


/* =========================================================
   PHOTOGRAPHY PAGE
   PREMIUM BLACK CENTRE
   ========================================================= */

body.photography-page::before {
    background:
        linear-gradient(
            90deg,
            rgba(3, 7, 14, 0.18) 0%,
            rgba(3, 7, 14, 0.35) 18%,
            rgba(0, 0, 0, 0.82) 36%,
            rgba(0, 0, 0, 1) 48%,
            rgba(0, 0, 0, 1) 52%,
            rgba(0, 0, 0, 0.82) 64%,
            rgba(3, 7, 14, 0.35) 82%,
            rgba(3, 7, 14, 0.18) 100%
        ),
        url("background.png.PNG")
        center / cover
        no-repeat;

    transform: scale(1.02);
}


/* =========================================================
   PHOTOGRAPHY HERO
   ========================================================= */

.photography-logo {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 18px
            rgba(255,255,255,0.18)
        )
        drop-shadow(
            0 12px 28px
            rgba(0,0,0,0.65)
        );
}


/* =========================================================
   PHOTOGRAPHY PAGE HERO PANEL
   ========================================================= */

.photography-page .hero-card,
.photography-page .page-hero .hero-card {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.88)
        );

    border:
        1px solid
        rgba(215,221,230,0.18);

    box-shadow:
        0 25px 80px
        rgba(0,0,0,0.70),

        inset 0 0 40px
        rgba(255,255,255,0.015);
}


/* =========================================================
   PHOTOGRAPHY SECTION PANELS
   ========================================================= */

.photography-page .panel,
.photography-page .about {
    background:
        rgba(0,0,0,0.82);

    border:
        1px solid
        rgba(215,221,230,0.16);

    box-shadow:
        0 22px 65px
        rgba(0,0,0,0.65);
}


/* =========================================================
   PHOTOGRAPHY GALLERY
   ========================================================= */

.photography-page .gallery {
    position:
        relative;

    z-index:
        1;
}

.photography-page .gallery-card {
    background:
        rgba(0,0,0,0.88);

    border:
        1px solid
        rgba(215,221,230,0.18);

    box-shadow:
        0 20px 55px
        rgba(0,0,0,0.65);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.photography-page .gallery-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255,255,255,0.34);

    box-shadow:
        0 28px 75px
        rgba(0,0,0,0.78);
}


/* =========================================================
   PHOTOGRAPHY GALLERY IMAGES
   ========================================================= */

.photography-page .gallery-card img {
    background:
        #000;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.photography-page .gallery-link:hover img {
    transform:
        scale(1.035);

    filter:
        brightness(1.08)
        contrast(1.04);
}


/* =========================================================
   PHOTOGRAPHY CAPTIONS
   ========================================================= */

.photography-page .gallery-caption {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,1)
        );

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.photography-page .gallery-caption h3 {
    color:
        #ffffff;

    text-shadow:
        0 0 12px
        rgba(255,255,255,0.10);
}


/* =========================================================
   PHOTOGRAPHY PAGE HEADINGS
   ========================================================= */

.photography-page h1,
.photography-page h2,
.photography-page h3 {
    color:
        #ffffff;
}

.photography-page p {
    color:
        #c5ced9;
}


/* =========================================================
   PHOTOGRAPHY BUTTONS
   ========================================================= */

.photography-page .button {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.photography-page .button:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255,255,255,0.55);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.40);
}


/* =========================================================
   PHOTOGRAPHY MOBILE
   ========================================================= */

@media (max-width: 800px) {

    body.photography-page::before {
        background:
            linear-gradient(
                90deg,
                rgba(3,7,14,0.25) 0%,
                rgba(0,0,0,0.68) 25%,
                rgba(0,0,0,0.96) 42%,
                rgba(0,0,0,1) 50%,
                rgba(0,0,0,0.96) 58%,
                rgba(0,0,0,0.68) 75%,
                rgba(3,7,14,0.25) 100%
            ),
            url("background.png.PNG")
            center / cover
            no-repeat;
    }

    .photography-page .gallery-card {
        box-shadow:
            0 16px 45px
            rgba(0,0,0,0.65);
    }

    .photography-page .gallery-card:hover {
        transform:
            none;
    }

    .photography-page .gallery-link:hover img {
        transform:
            none;

        filter:
            none;
    }
}
/* =========================================================
   PHOTOGRAPHY SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .photography-page .gallery {
        gap:
            16px;
    }

    .photography-page .gallery-card {
        border-radius:
            16px;
    }

    .photography-page .gallery-caption {
        padding:
            16px;
    }

    .photography-page .gallery-card img {
        aspect-ratio:
            16 / 10;
    }
}
/* =========================================================
   PHASE 2.4
   FONT / RENDERING OPTIMISATION
   ========================================================= */

/* Keep text rendering lightweight and consistent */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent synthetic font styles from adding rendering work */
h1,
h2,
h3,
p,
a,
button {
    font-synthesis: none;
}

/* Improve heading wrapping on modern browsers */
h1,
h2,
h3 {
    text-wrap: balance;
}

/* Keep images from interfering with text rendering */
img {
    image-rendering: auto;
}

/* Avoid unnecessary layout work from hidden elements */
[hidden] {
    display: none !important;
}
