﻿:root {
    color-scheme: light;
    --ink: #13251b;
    --ink-strong: #071c13;
    --muted: #53685b;
    --soft: #eef7f1;
    --paper: #fffdfa;
    --line: #d7e5dc;
    --blue: #316049;
    --teal: #316049;
    --red: #ad3e32;
    --gold: #c18b31;
    --phthalo: #123524;
    --phthalo-mid: #316049;
    --phthalo-soft: #5d8b75;
    --phthalo-mist: #b1e0c9;
    --phthalo-dark: #071c13;
    --shadow: 0 18px 44px rgba(18, 53, 36, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fcfbf7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
    padding: 0 32px;
    color: #ffffff;
    background: rgba(18, 53, 36, 0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand,
.nav-links a {
    text-decoration: none;
}

.brand {
    font-weight: 800;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover,
.nav-links a:focus {
    color: #ffffff;
}

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 88vh;
    padding: 120px 32px 72px;
    color: #ffffff;
    background-image: url("../img/hero-workspace.e8ba0fb8649d.png");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 53, 36, 0.94) 0%, rgba(49, 96, 73, 0.72) 42%, rgba(49, 96, 73, 0.22) 74%),
        linear-gradient(180deg, rgba(18, 53, 36, 0.36) 0%, rgba(18, 53, 36, 0.12) 42%, rgba(18, 53, 36, 0.8) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 820px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f3b762;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 4.8rem;
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    color: var(--ink-strong);
    font-size: 2.3rem;
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink-strong);
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: 1.55rem;
    line-height: 1.28;
    font-weight: 800;
}

.hero-copy {
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.hero-actions,
.connect-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
}

.button.primary {
    color: #ffffff;
    background: var(--red);
}

.button.primary:hover,
.button.primary:focus {
    background: #8f2f27;
}

.button.secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.section {
    padding: 84px 32px;
}

.section-inner {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.intro-strip {
    padding-top: 24px;
    padding-bottom: 24px;
    color: #ffffff;
    background: var(--phthalo-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
    gap: 28px;
    align-items: center;
}

.intro-grid p {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.intro-grid .quiet {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    font-weight: 600;
}

.release-note {
    padding-top: 52px;
    padding-bottom: 52px;
    background: #f7f0e8;
}

.release-note-inner {
    max-width: 820px;
    margin: 0 auto;
}

.release-note h2 {
    max-width: 680px;
}

.release-note p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.06rem;
    font-weight: 700;
}
.section-heading {
    max-width: 740px;
    margin-bottom: 34px;
}

.section-heading p,
.prose p,
.case-item p,
.work-card p,
.connect-inner p {
    color: var(--muted);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.work-card {
    display: grid;
    align-content: start;
    min-height: 360px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 12px 28px rgba(7, 17, 31, 0.06);
}

.work-card.emphasized {
    border-color: rgba(49, 96, 73, 0.38);
    background: linear-gradient(180deg, #eef8f1 0%, #fffdfa 100%);
}

.work-index {
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 900;
}

.status-line,
.case-meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
    font-weight: 700;
}

.experience-band {
    background: #eef7f1;
}

.dance-section {
    background: #fff6f0;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 54px;
}

.prose a {
    color: var(--blue);
    font-weight: 800;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.skill-list li {
    padding: 8px 10px;
    border: 1px solid rgba(23, 78, 166, 0.18);
    border-radius: 6px;
    color: #214f3b;
    background: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
}

.compact-heading {
    margin-bottom: 24px;
}

.case-list {
    display: grid;
    gap: 14px;
}

.case-item {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
    gap: 28px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.case-item:last-child {
    border-bottom: 1px solid var(--line);
}

.connect-section {
    color: #ffffff;
    background: var(--phthalo-dark);
}

.connect-inner {
    justify-content: space-between;
    gap: 28px;
}

.connect-inner h2,
.connect-inner p {
    color: #ffffff;
}

.connect-inner p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
    .site-header {
        position: absolute;
        padding: 0 20px;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.88rem;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero {
        min-height: 84vh;
        padding: 106px 20px 56px;
    }

    .hero-subtitle {
        font-size: 1.28rem;
    }

    .section {
        padding: 64px 20px;
    }

    .intro-grid,
    .work-grid,
    .split-section,
    .case-item {
        grid-template-columns: 1fr;
    }

    .work-card {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        min-height: 94px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        min-height: 86vh;
        padding-top: 128px;
        background-position: 58% center;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .hero-copy,
    .section-heading p,
    .prose p,
    .case-item p,
    .work-card p {
        font-size: 0.98rem;
    }

    .hero-actions,
    .connect-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 52px 16px;
    }

    .work-card {
        padding: 20px;
    }
}
