:root {
    --bg: #050505;
    --panel: #101010;
    --panel-2: #171717;
    --text: #f5f5f5;
    --muted: #a1a1a1;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --radius: 28px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 30%), var(--bg);
}

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

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

.wrap {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-weight: 700;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a:not(.button) {
    color: var(--muted);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    font-weight: 700;
}

.button.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.button.full {
    width: 100%;
}

.hero {
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.eyebrow {
    display: inline-block;
    padding: .55rem .85rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    color: #d5d5d5;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1rem;
    font-size: .92rem;
}

h1,
h2,
h3 {
    letter-spacing: -0.04em;
    margin: 0 0 .8rem;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    max-width: 10ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: 1.35rem;
}

p,
li,
label {
    color: var(--muted);
    line-height: 1.7;
}

.lead {
    font-size: 1.1rem;
    max-width: 42rem;
}

.cta-row,
.stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-row {
    margin-top: 1.5rem;
}

.stats {
    margin-top: 2rem;
    gap: 1.5rem;
}

.stats div {
    min-width: 180px;
}

.stats strong {
    display: block;
    color: var(--text);
    margin-bottom: .25rem;
}

.hero-art {
    position: relative;
    min-height: 620px;
}

.shot {
    position: absolute;
    width: 42%;
    border-radius: 36px;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    background: #000;
}

.shot-a {
    left: 6%;
    top: 6%;
    transform: rotate(-6deg);
}

.shot-b {
    right: 0;
    top: 0;
    transform: rotate(7deg);
}

.shot-c {
    right: 10%;
    bottom: 0;
    transform: rotate(4deg);
}

.section {
    padding: 2rem 0 3rem;
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 1.5rem;
}

.feature-grid,
.gallery,
.blog-layout,
.contact-layout {
    display: grid;
    gap: 1.25rem;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery {
    grid-template-columns: repeat(4, 1fr);
}

.blog-layout {
    grid-template-columns: 1.45fr .85fr;
    align-items: start;
}

.contact-layout {
    grid-template-columns: 1fr 1fr;
}

.card,
.cta-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    padding: 1.5rem;
}

.gallery img,
.cover,
.inline-shot {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #000;
}

.cover {
    margin-bottom: 1.25rem;
}

.inline-shot {
    margin: 1rem 0;
}

.sidebar-stack {
    display: grid;
    gap: 1.25rem;
}

.page {
    padding: 3rem 0 4rem;
}

.page-hero {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.article-card ol {
    color: var(--muted);
    padding-left: 1.25rem;
}

.cta-panel {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
}

form {
    display: grid;
    gap: 1rem;
}

input,
textarea {
    width: 100%;
    padding: .95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 0 3rem;
}

@media (max-width: 980px) {

    .hero,
    .feature-grid,
    .gallery,
    .blog-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .shot {
        position: static;
        width: 100%;
        transform: none !important;
    }

    h1 {
        max-width: none;
    }

    .cta-panel,
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    nav {
        gap: .75rem;
    }

    .wrap {
        width: min(calc(100% - 1.25rem), var(--max));
    }

    .card,
    .cta-panel {
        padding: 1.1rem;
        border-radius: 22px;
    }
}