:root {
    --paper: #f4efe5;
    --card: #fffaf0;
    --ink: #151923;
    --muted: #6f6a60;
    --line: #d8c8a8;

    --copper: #b88a3b;
    --copper-dark: #8f6829;

    --dark: #101722;
    --dark-alt: #1c2533;

    --radius: 10px;
    --shadow: 0 16px 40px rgba(16, 23, 34, .10);

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(42,34,26,.96);
    border-bottom: 3px solid var(--copper);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    background: linear-gradient(135deg, #c69a48, #7d5720);
    color: #101722;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #f5ead8;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    padding: 130px 24px;
    text-align: center;

    background:
        linear-gradient(rgba(10,16,25,.78), rgba(10,16,25,.9)),
        radial-gradient(circle at top left, #34445c, #101722 72%);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.kicker {
    color: #e5b56d;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8rem;
    font-weight: bold;
}

.hero h1 {
    color: white;
    margin: 18px 0;

    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
}

.hero p {
    color: #eadcc7;
    font-size: 1.25rem;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: bold;
    transition: .2s;
    letter-spacing: .02em;
}

.btn-primary {
    background: var(--dark);
    color: white;
    border: 1px solid var(--dark);
}

.btn-primary:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: #101722;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,.45);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.12);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 70px 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin: 0 0 12px;
    font-size: 2.5rem;
}

.section-title p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    position: relative;
    background: linear-gradient(180deg, #fffdf7, #f8f1e6);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--copper);
}

.card-label {
    color: var(--copper);
    font-size: .8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.card h3 {
    margin: 12px 0;
    font-size: 1.55rem;
}

.card p {
    color: #3d414a;
}

.about-panel {
    margin-top: 70px;

    background: white;
    border-left: 6px solid var(--copper);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.values {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-box {
    background: #f5ecdd;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
}

.site-footer {
    background: var(--dark);
    color: #e8dbc4;
    text-align: center;
    padding: 60px 24px;
    border-top: 3px solid var(--copper);
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.site-footer a {
    color: white;
}

@media (max-width: 900px) {

    .card-grid,
    .values {
        grid-template-columns: 1fr;
    }

    .nav-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-small {
    padding: 90px 24px;
}

.hero-small h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.project-feature {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 42px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.project-feature h2 {
    font-size: 2.2rem;
    margin: 8px 0 12px;
}

.project-feature p {
    max-width: 760px;
    color: #4a433b;
    margin-bottom: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin: 8px 0 14px;
    font-size: 2rem;
}

.clean-list {
    padding-left: 20px;
    margin: 0;
}

.clean-list li {
    margin-bottom: 10px;
    color: #4a433b;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.stat-box {
    background: #fffaf0;
    color: var(--ink);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    border: 1px solid var(--line);
    border-top: 5px solid var(--copper);
    box-shadow: var(--shadow);
}

.stat-box strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.stat-box span {
    display: block;
    color: var(--muted);
    font-size: .95rem;
}

@media (max-width: 900px) {
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }
}

.mission-banner {
    margin-top: 70px;
    background: linear-gradient(
        135deg,
        var(--dark),
        var(--dark-alt)
    );

    color: #f5ead8;
    border-radius: var(--radius);
    padding: 60px;
    box-shadow: var(--shadow);
}

.mission-banner h2 {
    font-size: 2.6rem;
    margin: 10px 0 20px;
    color: white;
}

.mission-banner p {
    max-width: 800px;
    color: #d8c6a8;
}

@media (max-width: 700px) {
    .mission-banner {
        padding: 35px;
    }

    .mission-banner h2 {
        font-size: 2rem;
    }
}

.publishing-feature {
    margin-top: 70px;

    background: #f3ead8;
    border: 1px solid var(--line);
    border-left: 6px solid var(--copper);

    border-radius: var(--radius);
    padding: 50px;

    box-shadow: var(--shadow);
}

.publishing-feature h2 {
    font-size: 2.5rem;
    margin: 10px 0 18px;
}

.publishing-feature p {
    max-width: 800px;
    color: #4a433b;
}

.card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
}

.project-with-image {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: center;
}

.project-image {
    width: 100%;
    height: 230px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #1f1b16;
    padding: 10px;
}

@media (max-width: 800px) {
    .project-with-image {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 240px;
    }
}