* {
    cursor: none;
    margin: 0;
    padding: 0;
}

:root {
    --c0: #e0dcd5;
    --c1: #3E2C23;
    --c2: #E76F2D;
    --c3: #38312e;
    --nav-w: 72px;
    --ease: cubic-bezier(0.76, 0, 0.24, 1);
    font-size: clamp(12px, 1vw, 18px);
  }

html {
    scroll-behavior: auto; 
    overflow-y: hidden;
    overflow-x: hidden; 
}

body {
    background-color: var(--c0);
    font-family: 'Source Code Pro', monospace;
    font-weight: 500;
    overflow-x: hidden;
    overflow-y: hidden;
}

p {
	width: 100%;
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
	color: var(--c1);
	line-height: 1.4;
}

/* ── Custom cursor ── */
#cursor {
    cursor: none;
    position: fixed;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--c2);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
    position: fixed;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--c1);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

/* ── Background blur ── */

.blur1 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.16;
    animation: drift 3s ease-in-out infinite alternate;
}

.blur2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.16;
    animation: drift 5s ease-in-out infinite alternate;
}

.orange {
    width: 1200px; height: 1200px;
    background: var(--c2);
    top: 50%; right: -350px;
}

.dark {
    width: 400px; height: 400px;
    background: var(--c1);
    top: -100px; left: -150px;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(10%, -10%) scale(0.8); }
}
	
.image-grid {
    display: grid;
	padding-top: 0px;
	padding-bottom: 0px;	
	padding-right: 0px;
	padding-left: 2%;
    grid-template-columns: repeat(8, 1fr) 1.6fr;
    gap: 0rem;
}

.keyz {
    position: fixed;
	left: 14%;
    top: 40%;
    transform: translateY(0%);
    color: var(--c2);
	font-weight: 300;
    white-space: nowrap;
}

.rights {
    position: fixed;
	right:10%;
	top: 40%;
	font-weight: 900;
    color: var(--c2);
    text-align: right;
}

.creds {
	position: absolute;
    top: 40%;
    text-align: left;
}

.h1 {
    background-color: transparent;
    border: none;
    font-family: 'Source Code Pro', monospace;
    font-weight: 900;
    font-size: 1rem;
    color: var(--c2);
    transition: background-color 0.3s ease;
}
	
.button {
	background-color: transparent;
    border: none;
    font-family: 'Source Code Pro', monospace;
    font-weight: 900;
    font-size: 1rem;
    color:var(--c2);
    transition: background-color 0.3s ease;
}
	
.button:hover::before, .b2:hover::before {
    cursor: none;
    content: "+ ";
    opacity: 1;
}

.b2 {
    text-decoration: none;
    background-color: transparent;
    border: none;
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
    font-size: 1rem;
    color: var(--c1);
    transition: background-color 0.3s ease;
}


.image-grid img.wide {
	grid-column: 5/10;
    height: 100vh;
    width:100%;
    justify-self: left;
    object-fit: cover;
}

.image-grid img.fit {
	grid-column: 5/10;
    justify-self: left;
    height: 100vh;
    width: auto;
}

.text {
	text-align: left;
    position: fixed;
    top: 40%;
    left: 48%;
}
	
.text-first {
	text-align: left;
	position: absolute;
    top: 40%;
	left: 32%;
}
	
.text-mid {
	grid-column: 4;
	text-align: left;
	position: relative;
	top: 40%;
	padding-left: 4px;
	padding-right: 4px;
}
	
.text-left {
	grid-column: 1/4;
	position: absolute;
    top: 40%;
    text-align: left;
}

/*
@media (prefers-color-scheme: dark) {
    html, body {
        background-color: var(--c3);
    }
    p, a, section, .b2{
        color: var(--c0);
    }
}

*/