:root {
    --black: #0b0b0b;
    --white: #eee;
    --grey: #a0a0a0
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background-color: var(--black);
    background-image:
        radial-gradient(ellipse 72% 58% at 8% 4%, rgb(58 52 43 / 10%), transparent 68%),
        radial-gradient(ellipse 62% 48% at 96% 34%, rgb(38 43 48 / 8%), transparent 72%),
        radial-gradient(ellipse 72% 58% at 48% 96%, rgb(45 40 36 / 7%), transparent 72%),
        radial-gradient(ellipse at center, transparent 42%, rgb(0 0 0 / 26%) 100%),
        repeating-radial-gradient(circle at 0 0, rgb(255 255 255 / 1.2%) 0 0.55px, transparent 0.8px 3.6px),
        repeating-linear-gradient(135deg, transparent 0 170px, rgb(255 255 255 / 1.3%) 171px, transparent 172px 340px);
    color: var(--white);
    font: 14px/1.65 Inter, Arial, sans-serif
}

.site-header {
    height: 76px;
    padding: 0 3%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: fixed;
    z-index: 5;
    inset: 0 0 auto;
    background: #070707e8;
    border-bottom: 1px solid #ffffff0d
}

.brand {
    color: inherit;
    text-decoration: none;
    font: 20px 'Bebas Neue';
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 9px
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    background: radial-gradient(circle at 30% 30%, #eee, #777 35%, #151515 70%);
    color: #111
}

.main-nav {
    margin: auto;
    display: flex;
    gap: 28px
}

.main-nav a,
.header-actions>a:not(.button),
footer a {
    color: inherit;
    text-decoration: none
}

.main-nav a {
    color: #aaa;
    font-size: 12px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 13px
}

.social-icon {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer
}

.button-light {
    color: #111;
    background: #f4f3ef
}

.button-outline {
    color: #fff;
    border-color: #fff;
    background: transparent
}

.button-dark {
    background: #111;
    color: #fff
}

.menu-toggle {
    display: none
}

.hero {
    min-height: 100vh;
    padding: 76px 7% 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 38%, #0b0b0b 100%),
        linear-gradient(90deg, #0b0b0b 0%, #0b0b0b 29%, #0b0b0be0 43%, #0b0b0b88 58%, transparent 78%)
}

.hero-image {
    position: absolute;
    inset: 0 0 0 38%
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    opacity: .62
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 650px
}

.eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 16px
}

.hero h1,
h2,
h3 {
    font-family: 'Bebas Neue';
    font-weight: 400;
    line-height: .92;
    letter-spacing: 1px
}

.hero h1 {
    font-size: clamp(80px, 13vw, 190px);
    margin: 0
}

.hero h1 span,
.about h2 span {
    color: #888
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin: 22px 0
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.scroll-cue {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    left: 7%;
    color: #ccc;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px
}

.scroll-cue span {
    margin-left: 9px;
    font-size: 19px
}

.section {
    padding: 110px 7%;
    background: #0b0b0b
}

main > .section:nth-of-type(odd):not(.hero) {
    background: #151515
}

.container {
    max-width: 1240px;
    margin: auto
}

.section h2 {
    font-size: clamp(42px, 5vw, 70px);
    margin: 0 0 45px
}

.service-grid,
.process-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-grid article {
    border-top: 1px solid #555;
    padding: 24px 8px 0;
    display: flex;
    flex-direction: column
}

.icon {
    font-size: 25px
}

.service-grid h3,
.process-grid h3 {
    font-size: 24px;
    margin: 22px 0 10px
}

.service-grid strong {
    font-size: 11px;
    color: #bbb;
    margin-top: auto;
    padding: 25px 0 15px
}

.service-grid a {
    color: #eee;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px
}

.filters {
    display: flex;
    gap: 8px;
    margin: -20px 0 30px
}

.filters button {
    font: 600 10px Inter;
    letter-spacing: 1px;
    padding: 9px 13px;
    border: 1px solid #555;
    background: transparent;
    color: #ddd;
    cursor: pointer
}

.filters .active,
.filters button:hover {
    background: #eee;
    color: #111
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.portfolio-grid figure {
    position: relative;
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    background: #222
}

.portfolio-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.25);
    transition: .35s
}

.portfolio-grid figure:hover img {
    transform: scale(1.05);
    filter: none
}

.portfolio-grid figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 14px 12px;
    background: linear-gradient(transparent, #000d);
    font: 20px 'Bebas Neue'
}

.portfolio-grid small {
    display: block;
    font: 10px Inter;
    color: #ddd
}

.process-grid {
    padding: 0;
    margin: 0;
    list-style: none;
    grid-template-columns: repeat(4, 1fr)
}

.process-grid li {
    border-top: 1px solid #555;
    padding: 14px 12px
}

.process-grid span {
    font: 14px 'Bebas Neue'
}

.process-grid i {
    display: block;
    font-style: normal;
    font-size: 25px;
    margin-top: 20px
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about p {
    max-width: 560px;
    color: #c9c9c9
}

.about-image {
    height: 620px;
    overflow: hidden;
    border-radius: 16px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: scale(1.3);
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.price-grid article {
    border: 1px solid #555;
    padding: 34px;
    display: flex;
    flex-direction: column
}

.price-grid h3 {
    font-size: 34px;
    margin: 13px 0
}

.price-grid b {
    font: 44px 'Bebas Neue';
    margin: 0 0 18px
}

.price-grid ul {
    padding-left: 16px;
    margin-bottom: 28px
}

.price-grid .button {
    margin-top: auto;
    align-self: start
}

.price-grid .featured {
    background: #111
}

.review-grid article {
    border-top: 1px solid #555;
    padding: 20px 5px
}

.stars {
    letter-spacing: 3px;
    font-size: 13px
}

.review-grid article>p {
    color: #c7c7c7;
    min-height: 125px
}

.review-grid footer {
    padding: 0;
    background: none;
    color: #aaa;
    font-size: 11px;
    display: flex;
    justify-content: space-between
}

.review-grid footer b {
    color: #eee
}

.review-cta {
    text-align: center;
    margin-top: 40px
}

.review-cta p {
    font: 20px 'Bebas Neue';
    letter-spacing: 1px
}

.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact label {
    font-size: 11px;
    letter-spacing: 1px;
    display: grid;
    gap: 6px
}

.contact input,
.contact select,
.contact textarea {
    font: 14px Inter;
    background: transparent;
    color: #eee;
    border: 0;
    border-bottom: 1px solid #777;
    padding: 11px 0;
    outline: none
}

.contact select option {
    color: #111
}

.contact textarea {
    min-height: 90px;
    resize: vertical
}

.wide {
    grid-column: 1/-1
}

.form-status {
    grid-column: 1/-1;
    margin: 0;
    color: #aaa
}

.contact aside {
    border-left: 1px solid #444;
    padding-left: 35px
}

.contact aside img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none
}

dl {
    margin: 25px 0
}

dt {
    font-size: 10px;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: 15px
}

dd {
    margin: 2px 0
}

dd a {
    color: #eee
}

footer {
    background: #050505;
    color: #aaa;
    padding: 55px 7% 20px;
    text-align: center
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.footer-brand .brand {
    justify-content: center
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 20px;
    font-size: 12px
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    gap: 10px
}

.footer-info a,
.footer-info p {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 175px;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #242424;
    border-radius: 10px;
    background: #0b0b0b;
    color: #e5e5e5;
    font-size: 12px;
    text-decoration: none
}

.footer-info span {
    color: #777;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase
}

.copyright {
    margin: 45px 0 0;
    padding-top: 17px;
    border-top: 1px solid #222;
    font-size: 10px;
    color: #777;
    text-align: center
}

.copyright a {
    color: #aaa
}

@media(max-width:760px) {
    .site-header {
        height: 62px;
        padding: 0 5%;
        gap: 12px
    }

    .brand {
        font-size: 17px
    }

    .brand-mark {
        width: 29px;
        height: 29px
    }

    .main-nav {
        position: absolute;
        display: none;
        top: 62px;
        left: 0;
        right: 0;
        padding: 22px 5%;
        background: #090909;
        flex-direction: column;
        gap: 12px
    }

    .main-nav.open {
        display: flex
    }

    .header-actions>a:not(.button) {
        display: none
    }

    .header-actions .button {
        min-height: 34px;
        padding: 0 10px;
        font-size: 9px
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        background: transparent;
        border: 0;
        color: #eee;
        font: 10px Inter;
        letter-spacing: 1px
    }

    .hero {
        padding: 90px 7% 55px;
        align-items: end;
        min-height: 720px
    }

    .hero-image {
        inset: 0
    }

    .hero:after {
        background: linear-gradient(0deg, #0b0b0b 2%, #0b0b0b40 70%, #0b0b0b88)
    }

    .hero h1 {
        font-size: 92px
    }

    .section {
        padding: 75px 6%
    }

    .section h2 {
        margin-bottom: 35px
    }

    .service-grid,
    .process-grid,
    .about-grid,
    .contact-grid,
    .price-grid,
    .review-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .service-grid {
        gap: 43px
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 7px
    }

    .process-grid {
        gap: 25px
    }

    .about-grid,
    .contact-grid {
        gap: 35px
    }

    .about-image {
        height: 430px
    }

    .contact aside {
        border-left: 0;
        border-top: 1px solid #444;
        padding: 25px 0
    }

    .contact form {
        grid-template-columns: 1fr
    }

    .wide {
        grid-column: auto
    }

    .price-grid article {
        padding: 25px
    }

    .price-grid b {
        font-size: 42px
    }

    .review-grid article>p {
        min-height: 0
    }

    .footer-grid {
        gap: 20px
    }

    .footer-grid nav {
        max-width: 260px
    }

    .filters {
        overflow: auto;
        margin-top: -15px
    }

    .filters button {
        white-space: nowrap
    }

    .scroll-cue {
        left: 7%
    }
}
