/* =========================================================
   NEWITT MEDIA
   MASTER SITE STYLESHEET
   PHASE 1 FOUNDATION
========================================================= */


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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #020305;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(
            180deg,
            rgba(2, 3, 5, 0.18),
            rgba(2, 3, 5, 0.38)
        ),
        url("background.png") center top / cover fixed no-repeat;
    background-color: #020305;
    color: #f4f7fa;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 174, 255, 0.08),
            transparent 42%
        );
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

section {
    position: relative;
}

::selection {
    background: rgba(0, 190, 255, 0.25);
    color: #ffffff;
}


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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 3, 5, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.nav-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
}

.nav-brand span {
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.nav-brand strong {
    color: #c9a45b;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-links a {
    padding: 8px 13px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    transition:
        color 180ms ease,
        background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 999px;
}


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

.eyebrow {
    margin-bottom: 10px;
    color: #c9a45b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 6vw, 5.4rem);
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.025em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    color: rgba(244, 247, 250, 0.78);
}

.hero-tagline {
    color: #c9a45b;
    font-size: clamp(0.82rem, 1.5vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   GLOBAL SECTIONS
========================================================= */

section:not(.hero):not(.skyline-hero):not(.paranormal-hero):not(.photography-hero):not(.contact-hero) {
    padding: 90px 0;
}

.about {
    width: min(900px, 100%);
    margin-inline: auto;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading span,
h1 span,
h2 span {
    color: #c9a45b;
}


/* =========================================================
   BUTTON SYSTEM
   PHASE 1 BASE
   CONTENT-SIZED, NOT FULL-WIDTH
========================================================= */

.button,
.buttons a,
.hero-actions a,
.social-button {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    line-height: 1.15;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover,
.buttons a:hover,
.hero-actions a:hover,
.social-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.28);
}

.button.primary {
    background: rgba(201, 164, 91, 0.14);
    border-color: rgba(201, 164, 91, 0.55);
    color: #f5d38a;
}

.button.primary:hover {
    background: rgba(201, 164, 91, 0.22);
    box-shadow: 0 8px 25px rgba(201, 164, 91, 0.1);
}

.buttons,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.buttons a,
.hero-actions a {
    flex: 0 0 auto;
}


/* =========================================================
   CINEMATIC INTRO
========================================================= */

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #020305;
}

.intro-atmosphere {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 170, 255, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 50% 65%,
            rgba(0, 120, 255, 0.07),
            transparent 38%
        );
    animation: introAtmosphere 5s ease-in-out infinite alternate;
}

.intro-light-sweep {
    position: absolute;
    top: -20%;
    left: -30%;
    width: 28%;
    height: 140%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(130, 220, 255, 0.18),
        transparent
    );
    transform: rotate(18deg);
    animation: introSweep 4.6s ease-in-out infinite;
}

.intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(760px, calc(100% - 40px));
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-logo {
    width: min(240px, 52vw);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 20px rgba(0, 170, 255, 0.18))
        drop-shadow(0 0 50px rgba(0, 170, 255, 0.08));
    animation: introLogo 1.8s ease both;
}

.intro-name {
    margin-top: 22px;
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.intro-name span {
    color: #c9a45b;
}

.intro-line {
    width: 90px;
    height: 1px;
    margin: 20px auto;
    background: rgba(201, 164, 91, 0.7);
}

.intro-tagline {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.68rem, 1.7vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.8;
}

.site-intro.intro-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 700ms ease,
        visibility 700ms ease;
}


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

.hero,
.skyline-hero,
.paranormal-hero,
.photography-hero,
.contact-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero {
    overflow: hidden;
    text-align: center;
}

.hero-atmosphere,
.paranormal-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-atmosphere {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 170, 255, 0.11),
            transparent 32%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrap {
    width: min(210px, 46vw);
    margin-bottom: 24px;
}

.hero-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(0, 170, 255, 0.12));
}

.hero-content h1 {
    max-width: 950px;
}

.hero-introduction {
    width: min(650px, 100%);
    margin-inline: auto;
    font-size: 1rem;
}

.hero-rule {
    width: 90px;
    height: 1px;
    margin: 20px auto;
    background: rgba(201, 164, 91, 0.65);
}


/* =========================================================
   PAGE HEROES
========================================================= */

.skyline-hero,
.paranormal-hero,
.photography-hero,
.contact-hero {
    min-height: 72vh;
}

.skyline-hero-content,
.paranormal-hero-content,
.photography-hero-content,
.contact-hero-content {
    width: min(860px, 100%);
    margin-inline: auto;
}

.page-logo {
    width: min(250px, 52vw);
    height: auto;
    max-height: 220px;
    margin-bottom: 30px;
    object-fit: contain;
}

.skyline-logo {
    filter: drop-shadow(0 0 28px rgba(0, 174, 255, 0.18));
}

.paranormal-logo {
    filter: drop-shadow(0 0 28px rgba(190, 30, 40, 0.22));
}

.photography-mark {
    margin-bottom: 20px;
}

.photography-symbol {
    color: #78d58a;
    font-size: 3rem;
    line-height: 1;
}

.paranormal-atmosphere {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(155, 20, 30, 0.13),
            transparent 38%
        );
}

.paranormal-fog {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at 50% 80%,
            rgba(180, 180, 180, 0.045),
            transparent 45%
        );
}


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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}


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

.lightbox,
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox.active,
#lightbox.active {
    display: grid;
}

.lightbox img,
#lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 6px;
}

.lightbox-close,
#lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}


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

.social-hub {
    position: relative;
    overflow: hidden;
    padding: 82px 0 58px;
    background: rgba(2, 3, 5, 0.18);
}

.social-hub-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url("newitt-social-hub-background-optimized.jpg")
        center / cover no-repeat;
    opacity: 0.72;
}

.social-hub-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(2, 3, 5, 0.25),
            rgba(2, 3, 5, 0.48)
        );
}

.social-hub-content {
    position: relative;
    z-index: 5;
}

.social-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.social-brand {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(4, 7, 12, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-brand-inner {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 190px;
    padding: 20px;
}

.social-logo-wrap {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
}

.social-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.paranormal-social-logo img {
    animation: paranormalFloat 6s ease-in-out infinite;
}

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

.social-brand-name {
    margin-bottom: 2px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.blue-text {
    color: #4ecfff;
}

.red-text {
    color: #ff5d67;
}

.social-brand h3 {
    margin-bottom: 14px;
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    letter-spacing: 0.055em;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.social-button {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.68rem;
    border-radius: 6px;
}

.skyline-button {
    border-color: rgba(78, 207, 255, 0.4);
    color: #8ee5ff;
}

.paranormal-button {
    border-color: rgba(255, 93, 103, 0.35);
    color: #ff9ca2;
}

.social-lightning {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at 20% 40%,
            rgba(0, 180, 255, 0.08),
            transparent 32%
        );
    animation: skylineAmbient 5s ease-in-out infinite alternate;
}

.social-house-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at 80% 45%,
            rgba(220, 30, 40, 0.07),
            transparent 30%
        );
    animation: paranormalAmbient 6s ease-in-out infinite alternate;
}

.social-paranormal-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 60, 70, 0.035),
            transparent 22%
        );
    animation: paranormalPulse 4s ease-in-out infinite;
}

.social-ticker {
    position: relative;
    z-index: 8;
    margin-top: 20px;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 91, 0.28);
    border-bottom: 1px solid rgba(201, 164, 91, 0.28);
    background: rgba(0, 0, 0, 0.26);
}

.social-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 24s linear infinite;
}

.social-ticker-track span {
    padding: 9px 32px;
    color: #c9a45b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    white-space: nowrap;
}


/* =========================================================
   INVESTIGATION CARDS
========================================================= */

.investigation-grid,
.photography-focus-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.investigation-card,
.photography-focus-card,
.contact-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(4, 7, 12, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.investigation-card p,
.photography-focus-card p,
.contact-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.photography-focus-icon,
.contact-card-icon {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.photography-focus-icon {
    color: #78d58a;
}

.skyline-contact .contact-card-icon {
    color: #4ecfff;
}

.paranormal-contact .contact-card-icon {
    color: #ff5d67;
}

.photography-contact .contact-card-icon {
    color: #78d58a;
}

.contact-card h2 {
    font-size: 1.5rem;
}


/* =========================================================
   CTA
========================================================= */

.home-cta {
    padding: 76px 0;
}

.cta-panel {
    width: min(780px, 100%);
    margin-inline: auto;
    padding: 42px;
    border: 1px solid rgba(201, 164, 91, 0.22);
    border-radius: 12px;
    background: rgba(3, 5, 8, 0.62);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-panel .hero-actions {
    justify-content: center;
}


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

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 164, 91, 0.42);
    border-radius: 50%;
    background: rgba(2, 3, 5, 0.78);
    color: #c9a45b;
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top.visible,
.back-to-top.show,
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(201, 164, 91, 0.12);
}


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

.site-footer {
    padding: 54px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 3, 5, 0.72);
    text-align: center;
}

.footer-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.footer-brand {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.footer-tagline {
    margin-bottom: 22px;
    color: #c9a45b;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.copyright,
.website-address {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    line-height: 1.8;
}

.website-address {
    margin-top: 12px;
}

.website-address a {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes introAtmosphere {
    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes introSweep {
    0% {
        transform: translateX(-120%) rotate(18deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        opacity: 0.55;
    }

    100% {
        transform: translateX(520%) rotate(18deg);
        opacity: 0;
    }
}

@keyframes introLogo {
    from {
        opacity: 0;
        transform: scale(0.88);
        filter:
            drop-shadow(0 0 0 rgba(0, 170, 255, 0))
            blur(5px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter:
            drop-shadow(0 0 20px rgba(0, 170, 255, 0.18))
            blur(0);
    }
}

@keyframes skylineAmbient {
    from {
        opacity: 0.35;
        transform: translateX(-1%);
    }

    to {
        opacity: 0.85;
        transform: translateX(1%);
    }
}

@keyframes paranormalAmbient {
    from {
        opacity: 0.3;
        transform: translateX(1%);
    }

    to {
        opacity: 0.8;
        transform: translateX(-1%);
    }
}

@keyframes paranormalPulse {
    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes paranormalFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(0.6deg);
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding-inline: 9px;
        font-size: 0.74rem;
    }

    .social-brand-inner {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
    }

    .social-logo-wrap {
        width: 78px;
        height: 78px;
    }

    .investigation-grid,
    .photography-focus-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 620px);
    }

    .site-header {
        position: sticky;
    }

    .nav {
        min-height: 68px;
    }

    .nav-brand img {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .nav-brand span {
        font-size: 0.78rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        background: rgba(2, 3, 5, 0.96);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    }

    .nav-links.open,
    .nav-links.active,
    .nav-links.menu-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    .hero,
    .skyline-hero,
    .paranormal-hero,
    .photography-hero,
    .contact-hero {
        min-height: auto;
        padding: 84px 0;
    }

    section:not(.hero):not(.skyline-hero):not(.paranormal-hero):not(.photography-hero):not(.contact-hero) {
        padding: 66px 0;
    }

    .hero-logo-wrap {
        width: min(170px, 44vw);
    }

    .page-logo {
        width: min(190px, 48vw);
        max-height: 170px;
    }

    .hero-actions,
    .buttons {
        justify-content: center;
    }

    .button,
    .buttons a,
    .hero-actions a {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 0.72rem;
    }

    .social-brand-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .social-brand-inner {
        grid-template-columns: 66px minmax(0, 1fr);
        min-height: 0;
        padding: 15px;
    }

    .social-logo-wrap {
        width: 66px;
        height: 66px;
    }

    .social-brand h3 {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .social-button {
        min-height: 32px;
        padding: 6px 9px;
        font-size: 0.63rem;
    }

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

    .cta-panel {
        padding: 30px 20px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }

}


@media (max-width: 420px) {

    .nav-brand span {
        display: none;
    }

    .hero-actions,
    .buttons,
    .social-buttons {
        gap: 8px;
    }

    .button,
    .buttons a,
    .hero-actions a {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 0.68rem;
    }

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

    .social-logo-wrap {
        width: 58px;
        height: 58px;
    }

}


/* =========================================================
   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;
    }

}
