:root {
    --bg: #0d0d0d;
    --surface: #1a1a1a;
    --surface-strong: #222222;
    --text: #e0e0e0;
    --muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #d4af37; /* Gold accent for a premium feel */
    --accent-strong: #b8860b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.site-shell {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav a:hover {
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-bottom: 100px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 200;
    line-height: 1.1;
    margin: 0 0 24px;
}

.intro {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 35ch;
}

.highlight-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 4px;
    align-self: start;
}

.highlight-card .card-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--muted);
}

.highlight-card li:last-child {
    border-bottom: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.portfolio-item {
    margin: 0;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 2px;
}

.portfolio-item a {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.portfolio-item a:hover img {
    transform: scale(1.03);
}

.portfolio-item figcaption h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 5px;
}

.portfolio-item figcaption p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.section-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 4px;
}

.section-card h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 60px;
}

.site-footer p {
    margin: 5px 0 0;
}

.footer-contact a {
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.button:hover {
    background: var(--accent);
    color: var(--bg);
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .section-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}