/* =========================
   FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ebe6d8;
    color: #05070d;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   GLOBAL CONTAINER
========================= */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* =========================
   HEADER — ULTRA DARK GLASS
========================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 60px;

    background:
        linear-gradient(to bottom,
            rgba(3, 4, 8, 0.96),
            rgba(3, 4, 8, 0.88));

    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.04);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    z-index: 1000;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.logo span {
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
}

.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-circle:hover {
    transform: scale(1.1);

}

.logo-text {
    transition: transform 0.4s ease;
}

.logo-text:hover {
    color: #dce8d1;
    transform: scale(1.05);
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* NAV */
.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    color: #d4d4d4;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    padding: 12px 18px;
    border-radius: 10px;

    transition: 0.3s ease;
}

.nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

/* BUTTON */
.header-btn {
    background: #dce8d1;
    color: #05070d;

    padding: 12px 18px;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* MENU */
.menu-toggle {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 0 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXT */
.hero-text {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    color: #666;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.highlight {
    background: #05070d;
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 14px;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn-primary {
    background: #05070d;
    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
}

.hero-btn-secondary {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #05070d;
}

.hero-btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
}

/* IMAGE */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 560px;
    height: 640px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* =========================
   SERVICES — PREMIUM LAYER
========================= */

.services {
    padding: 120px 0;
    background: #ebe6d8;

    position: relative;
    z-index: 3;

    border-top-left-radius: 40px;
    border-top-right-radius: 40px;

    /* ЕДИНЫЙ ИСТОЧНИК СВЕТА (сверху) */
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.12);

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.12);
}

.services::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;

    width: 100%;
    height: 120px;

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.04),
            transparent);

    pointer-events: none;
}

/* лёгкий верхний highlight */
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);

    opacity: 0.6;
}

/* HEADER */
.services-header {
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 52px;
    letter-spacing: -2px;
    margin-bottom: 12px;
    color: #05070d;
}

.services-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
    max-width: 650px;
    line-height: 1.6;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* CARD — GLASS STYLE */
.service-card {
    position: relative;
    padding: 28px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: 0.35s ease;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* hover */
.service-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.6);

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* number */
.service-icon {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 14px;
}

/* title */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #05070d;
}

/* text */
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 42px;
    }
}

/* =========================
   MOBILE MENU (OPEN)
========================= */
.nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image img {
        width: 100%;
        height: 500px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .header {
        padding: 0 20px;
        height: 74px;
    }

    /* logo */
    .logo span {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    /* burger */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.04);

        backdrop-filter: blur(10px);

        font-size: 24px;
        color: white;

        cursor: pointer;

        z-index: 1002;
    }

    /* NAVIGATION */
    .nav {
        position: fixed;

        top: 74px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 6px;

        padding: 20px;

        background:
            linear-gradient(to bottom,
                rgba(3, 4, 8, 0.98),
                rgba(3, 4, 8, 0.96));

        backdrop-filter: blur(24px);

        border-bottom:
            1px solid rgba(255, 255, 255, 0.05);

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;

        transition: 0.35s ease;

        z-index: 1001;
    }

    /* OPEN STATE */
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* links */
    .nav a {
        width: 100%;

        padding: 16px 18px;

        border-radius: 12px;

        background: rgba(255, 255, 255, 0.03);

        font-size: 14px;
    }

    .header-btn {
        display: none;
    }

    /* HERO */
    .hero {
        padding-top: 140px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* image */
    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        height: 420px;
        border-radius: 22px;
    }

    /* services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* containers */
    .container {
        padding: 0 20px;
    }

    /* projects */
    .project-item,
    .project-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-number {
        font-size: 70px;
    }

    .project-content h2 {
        font-size: 30px;
    }

    .project-image img {
        height: 280px;
    }

    /* about */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 38px;
    }

    .about-image img {
        height: 320px;
    }

    /* contact */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-form {
        padding: 24px;
    }

    /* footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* =========================
   PROJECTS — LIGHT LUXURY EDITORIAL
========================= */

.projects {
    background: #ebe6d8;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

/* optional architectural grid background */
.projects::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

    background-size: 70px 70px;

    pointer-events: none;
}

/* SECTION LABEL */
.section-label.light {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 80px;
}

/* PROJECT ITEM LAYOUT */
.project-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;

    gap: 60px;
    margin-bottom: 140px;

    position: relative;
}

.project-item.reverse {
    grid-template-columns: 1.2fr 1fr 1fr;
}

/* BIG BACKGROUND NUMBER */
.project-number {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;

    color: rgba(0, 0, 0, 0.06);

    letter-spacing: -6px;

    user-select: none;
    pointer-events: none;
}

/* TEXT BLOCK */
.project-content {
    color: #05070d;
}

.project-tag {
    display: inline-block;

    font-size: 11px;
    letter-spacing: 3px;

    color: rgba(0, 0, 0, 0.5);

    margin-bottom: 14px;
}

.project-content h2 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.project-content p {
    font-size: 16px;
    line-height: 1.7;

    color: rgba(0, 0, 0, 0.65);

    max-width: 420px;
}

/* IMAGE */
.project-image {
    overflow: hidden;
    border-radius: 18px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.project-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;

    filter: brightness(0.95) contrast(1.05);

    transition: transform 0.6s ease, filter 0.6s ease;
}

/* hover effect */
.project-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.08);
}

/* subtle glow overlay */
.project-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at 30% 50%,
            rgba(0, 0, 0, 0.04),
            transparent 60%);

    pointer-events: none;
}

/* spacing refinement */
.project-item:last-child {
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .project-item,
    .project-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-number {
        font-size: 90px;
    }

    .project-content h2 {
        font-size: 32px;
    }

    .project-image img {
        height: 320px;
    }
}




/* =========================
   ABOUT — LIGHT PREMIUM
========================= */

.about {
    background: #ebe6d8;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

/* soft background depth */
.about::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.03), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02), transparent 60%);

    pointer-events: none;
}

/* layout */
.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;

    align-items: center;

    position: relative;
}

/* BIG BACKGROUND TEXT */
.about {
    position: relative;
    z-index: 2;
}

/* создаём ощущение, что projects "заезжает" под about */
.projects {
    position: relative;
    z-index: 1;
    margin-top: -60px;
    padding-top: 220px;
}

/* TEXT */
.about-text {
    color: #05070d;
}

.about::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;

    width: 100%;
    height: 80px;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.06),
            transparent);

    pointer-events: none;
}

.about-text h2 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1px;

    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;

    color: rgba(0, 0, 0, 0.65);

    margin-bottom: 14px;
    max-width: 520px;
}

/* accent line */
.about-text::before {
    content: "";
    display: block;

    width: 60px;
    height: 1px;

    background: rgba(0, 0, 0, 0.2);

    margin-bottom: 20px;
}

/* IMAGE */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.15);

    transform: translateZ(0);
}

/* рамка-слой */
.about-image::before {
    content: "";
    position: absolute;
    inset: -12px;

    border-radius: 28px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(8px);

    z-index: -1;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about::after {
        font-size: 80px;
    }

    .about-image img {
        height: 360px;
    }
}


/* =========================
   CONTACT SECTION
========================= */

.contact {
    margin: 0 auto;
    background: #ebe6d8;
    padding: 140px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CENTER CONTAINER */
.contact-inner {
    max-width: 1200px;
    width: 100%;

    padding: 0 60px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
    /* ВАЖНО: центр по вертикали */
    justify-items: center;
    /* центр по горизонтали */
}

/* =========================
   LEFT SIDE TEXT
========================= */

.contact-form-intro {
    max-width: 520px;
    text-align: left;
    margin: 0 auto 50px auto;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 10px;
}

.contact-form-intro h3 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #05070d;
    margin-bottom: 14px;
}

.contact-form-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
}

/* =========================
   RIGHT SIDE FORM
========================= */

.contact-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 50px auto;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    padding: 32px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);

    font-size: 14px;
    font-family: inherit;

    background: #fafafa;

    outline: none;

    transition: 0.2s ease;
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #05070d;
    background: #fff;
}

/* textarea */
.contact-form textarea {
    min-height: 130px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    margin-top: 6px;

    padding: 14px;
    border-radius: 10px;
    border: none;

    background: #05070d;
    color: white;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
        text-align: center;
    }

    .contact-form-intro {
        text-align: center;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form-intro h3 {
        font-size: 30px;
    }
}

/* =========================
   FOOTER — PREMIUM MINIMAL
========================= */

.footer {
    background: #05070d;
    color: #ebe6d8;

    padding: 100px 0 40px;

    position: relative;
}

/* main layout */
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;

    margin-bottom: 60px;
}

/* brand */
.footer-logo {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(235, 230, 216, 0.6);
    max-width: 320px;
}

/* links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(235, 230, 216, 0.7);
    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* contact */
.footer-contact p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: rgba(235, 230, 216, 0.5);
}

.footer-contact span {
    display: block;
    font-size: 14px;
    color: rgba(235, 230, 216, 0.7);
    margin-bottom: 6px;
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(235, 230, 216, 0.08);

    padding-top: 20px;
    text-align: center;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(235, 230, 216, 0.4);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
}

/* =========================
   FORM VALIDATION
========================= */

/* valid */
.contact-form input:valid,
.contact-form textarea:valid {
    border-color: rgba(0, 0, 0, 0.12);
}

/* invalid */
.contact-form input:invalid,
.contact-form textarea:invalid {
    border-color: rgba(255, 80, 80, 0.25);
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #05070d;
    background: #fff;

    box-shadow:
        0 0 0 4px rgba(5, 7, 13, 0.05);
}

/* placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* button disabled state */
.contact-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================
   FORM SUCCESS STATES
========================= */

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form button {
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease;
}

/* SELECT */

.contact-form select {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);

    font-size: 14px;
    font-family: inherit;

    background: #fafafa;

    outline: none;
    cursor: pointer;

    transition: 0.2s ease;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* focus */
.contact-form select:focus {
    border-color: #05070d;
    background: #fff;

    box-shadow:
        0 0 0 4px rgba(5, 7, 13, 0.05);
}

/* arrow */
.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2305070d' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;

    padding-right: 40px;
}

/* =========================
   PREMIUM SCROLLBAR
========================= */

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* background */
::-webkit-scrollbar-track {
    background: #0a0c12;
}

/* handle */
::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));

    border-radius: 20px;

    border: 2px solid #0a0c12;

    backdrop-filter: blur(10px);
}

/* hover */
::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.28),
            rgba(255, 255, 255, 0.12));
}

/* firefox */
html {
    scrollbar-color: rgba(255, 255, 255, 0.22) #0a0c12;
    scrollbar-width: thin;
}