@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --paper: #eee9dc;
    --ink: #171713;
    --muted: #68665c;
    --line: rgba(23,23,19,.18);
    --accent: #9a3e2e
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif
}

.hero {
    min-height: 92vh;
    background:
        radial-gradient(circle at 75% 25%, rgba(154,62,46,.16), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(45,72,46,.13), transparent 32%),
        var(--paper);
    display: flex;
    flex-direction: column
}

nav {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: .16em
}

nav a {
    color: var(--ink);
    text-decoration: none
}

.hero-content {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    padding: 80px 0
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 18px
}

h1,
h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600
}

h1 {
    font-size: clamp(72px, 13vw, 170px);
    line-height: .82;
    letter-spacing: -.055em;
    margin: 0
}

h2 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.035em;
    max-width: 900px;
    margin: 0 0 28px
}

.tagline {
    font-size: 18px;
    color: var(--muted);
    margin: 34px 0
}

.button {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 15px 21px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em
}

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

section {
    border-top: 1px solid var(--line);
    padding: 110px max(24px, calc((100% - 1180px) / 2))
}

.body {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75
}

.body a {
    color: var(--ink)
}


/* =========================
   SCREENSHOT GALLERY
   ========================= */

.gallery {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block
}


.studio {
    background: #ded8ca
}

footer {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    padding: 25px 0 35px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .12em
}

@media(max-width:700px) {

    .gallery {
        grid-template-columns: 1fr
    }

    section {
        padding-top: 75px;
        padding-bottom: 75px
    }

    footer {
        flex-direction: column;
        gap: 15px
    }
}
