:root {
--bg: #171615;
--surface: #24211f;
--surface-light: #302c29;
--text: #f4eee7;
--muted: #b8aea4;
--accent: #8b6df2;
--accent-soft: #d8cfff;
--line: rgba(244, 238, 231, 0.14);
--radius: 24px;
--max-width: 1180px;
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.5;
}

a {
color: inherit;
text-decoration: none;
}

.site-header {
position: sticky;
top: 0;
z-index: 10;
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px clamp(20px, 5vw, 64px);
background: rgba(23, 22, 21, 0.86);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--line);
}

.logo {
font-size: 0.95rem;
letter-spacing: 0.04em;
font-weight: 700;
}

.nav {
display: flex;
gap: 22px;
color: var(--muted);
font-size: 0.9rem;
}

.nav a:hover {
color: var(--text);
}

.hero {
max-width: var(--max-width);
margin: 0 auto;
min-height: 82vh;
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
gap: 44px;
align-items: center;
padding: 92px clamp(20px, 5vw, 64px) 70px;
}

.eyebrow {
margin: 0 0 14px;
color: var(--accent-soft);
text-transform: uppercase;
letter-spacing: 0.16em;
font-size: 0.72rem;
font-weight: 700;
}

h1,
h2,
h3,
p {
margin-top: 0;
}

h1 {
max-width: 950px;
font-size: clamp(3rem, 7vw, 7.4rem);
line-height: 0.94;
letter-spacing: -0.07em;
margin-bottom: 28px;
}

h2 {
font-size: clamp(2rem, 4vw, 4.2rem);
line-height: 1;
letter-spacing: -0.05em;
margin-bottom: 0;
}

h3 {
font-size: 1.35rem;
margin-bottom: 10px;
}

.hero-body {
max-width: 680px;
color: var(--muted);
font-size: clamp(1.05rem, 1.6vw, 1.28rem);
margin-bottom: 32px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 20px;
border-radius: 999px;
font-weight: 700;
font-size: 0.9rem;
border: 1px solid var(--line);
}

.button.primary {
background: var(--text);
color: var(--bg);
}

.button.secondary {
color: var(--text);
}

.button:hover {
transform: translateY(-1px);
}

.hero-card {
padding: 28px;
background:
radial-gradient(circle at top right, rgba(139, 109, 242, 0.28), transparent 42%),
var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
min-height: 280px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.card-label,
.project-type {
color: var(--accent-soft);
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.68rem;
font-weight: 700;
margin-bottom: 14px;
}

.hero-card p:last-child {
color: var(--muted);
font-size: 1.05rem;
margin-bottom: 0;
}

.marquee {
overflow: hidden;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
color: var(--muted);
background: #11100f;
}

.marquee-track {
display: flex;
width: max-content;
gap: 38px;
padding: 16px 0;
animation: scroll 36s linear infinite;
}

.marquee span {
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.76rem;
}

@keyframes scroll {
from {
transform: translateX(0);
}

to {
transform: translateX(-50%);
}
}

.section {
max-width: var(--max-width);
margin: 0 auto;
padding: 90px clamp(20px, 5vw, 64px);
}

.section-heading {
max-width: 880px;
margin-bottom: 42px;
}

.project-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}

.project-card {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
}

.project-card.featured {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
}

.project-image {
min-height: 290px;
background: var(--surface-light);
}

.project-card.featured .project-image {
min-height: 420px;
}

.placeholder {
position: relative;
overflow: hidden;
}

.placeholder::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(135deg, rgba(244, 238, 231, 0.16), transparent 38%),
radial-gradient(circle at 70% 30%, rgba(139, 109, 242, 0.34), transparent 34%),
linear-gradient(135deg, #302c29, #1e1c1a);
}

.placeholder::after {
position: absolute;
left: 24px;
bottom: 20px;
color: rgba(244, 238, 231, 0.62);
font-size: 0.78rem;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.dignity::after {
content: "Image / CAD Render";
}

.yogi::after {
content: "Product Render";
}

.washbus::after {
content: "Vehicle Layout";
}

.ruhome::after {
content: "Charm + App";
}

.constellations::after {
content: "Exhibit Still";
}

.project-info {
padding: 28px;
}

.project-info p:last-child {
color: var(--muted);
margin-bottom: 0;
}

.about {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 56px;
border-top: 1px solid var(--line);
}

.about-copy {
color: var(--muted);
font-size: 1.08rem;
}

.skills {
border-top: 1px solid var(--line);
}

.skills-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

.skills-grid div {
background: var(--surface);
border: 1px solid var(--line);
border-radius: 18px;
padding: 22px;
}

.skills-grid p {
color: var(--muted);
margin-bottom: 0;
}

.contact {
border-top: 1px solid var(--line);
}

.contact h2 {
max-width: 860px;
margin-bottom: 28px;
}

.contact-links {
display: flex;
flex-wrap: wrap;
gap: 14px;
}

.contact-links a {
color: var(--accent-soft);
border-bottom: 1px solid rgba(216, 207, 255, 0.5);
}

.footer {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 28px clamp(20px, 5vw, 64px);
color: var(--muted);
border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
.site-header {
align-items: flex-start;
gap: 16px;
flex-direction: column;
}

.hero {
grid-template-columns: 1fr;
min-height: auto;
padding-top: 64px;
}

.project-grid,
.project-card.featured,
.about,
.skills-grid {
grid-template-columns: 1fr;
}

.project-card.featured .project-image {
min-height: 320px;
}

h1 {
font-size: clamp(3rem, 16vw, 5rem);
}
}

@media (max-width: 520px) {
.nav {
width: 100%;
justify-content: space-between;
}

.section {
padding-top: 64px;
padding-bottom: 64px;
}

.footer {
flex-direction: column;
}
}
