:root {
    --ink: #111;
    --paper: #f8f7f3;
    --orange: #ff6b35;
    --violet: #7209b7;
    --green: #06a77d;
    --accent: var(--orange);
    --line: #d9d7d0
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5
}

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

img {
    display: block;
    width: 100%;
    object-fit: cover
}

.accent-orange {
    --accent: var(--orange)
}

.accent-violet {
    --accent: var(--violet)
}

.accent-green {
    --accent: var(--green)
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: .92;
    letter-spacing: .01em;
    margin: 0
}

h1 {
    font-size: clamp(4.4rem, 10vw, 9.5rem)
}

h2 {
    font-size: clamp(3rem, 6vw, 6rem)
}

h3 {
    font-size: 2.6rem
}

.site-header {
    height: 84px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative
}

.brand b {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.1em
}

.brand small {
    font-size: 8px;
    letter-spacing: .1em;
    position: absolute;
    top: 32px;
    left: 45px;
    width: 110px
}

.brand-mark {
    height: 30px;
    width: 32px;
    position: relative;
    display: inline-block
}

.brand-mark i {
    position: absolute;
    background: var(--ink);
    height: 10px;
    width: 25px;
    transform: skew(-18deg)
}

.brand-mark i:nth-child(1) {
    top: 0;
    left: 0
}

.brand-mark i:nth-child(2) {
    top: 10px;
    left: 5px
}

.brand-mark i:nth-child(3) {
    top: 20px;
    left: 10px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 32px);
    font-weight: 600
}

.main-nav>a:not(.nav-cta) {
    font-size: 14px
}

.nav-cta,
.btn {
    background: var(--accent);
    padding: 15px 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .06em;
    transition: .25s
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 var(--ink)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

.hero {
    min-height: calc(100vh - 84px);
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: white
}

.hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .15)), url('../images/homepage/hero-1.jfif') center/cover
}

.hero-content {
    position: relative;
    padding: 11vh 8vw
}

.eyebrow,
.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 22px
}

.hero h1 em,
h1 em,
h2 em {
    font-style: normal;
    color: var(--accent)
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 30px
}

.btn-orange {
    --accent: var(--orange)
}

.text-link {
    border-bottom: 1px solid white;
    padding-bottom: 4px;
    font-size: 13px
}

.hero-stamp {
    position: absolute;
    right: 6vw;
    bottom: 9vh;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 50%;
    height: 130px;
    width: 130px;
    display: grid;
    place-content: center;
    text-align: center;
    font-family: 'Bebas Neue';
    font-size: 2.5rem;
    line-height: .8;
    transform: rotate(12deg)
}

.hero-stamp small {
    font: 700 9px 'DM Sans';
    letter-spacing: .1em
}

.section-pad {
    padding: 100px 8vw
}

.intro {
    background: white
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 12vw;
    align-items: end
}

.intro h2 span {
    color: var(--accent)
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    max-width: 560px
}

.arrow-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px
}

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

.service-card {
    min-height: 360px;
    padding: 35px;
    position: relative;
    color: white;
    overflow: hidden
}

.card-orange {
    background: var(--orange)
}

.card-violet {
    background: var(--violet)
}

.card-green {
    background: var(--green)
}

.card-number {
    position: absolute;
    right: 25px;
    top: 22px;
    font-size: 12px
}

.service-icon {
    font-size: 42px;
    margin-bottom: 48px
}

.service-card h3 {
    margin-bottom: 20px
}

.service-card p {
    max-width: 250px
}

.service-card a {
    position: absolute;
    bottom: 28px;
    font-weight: 700;
    font-size: 13px
}

.dark-section {
    background: var(--ink);
    color: white
}

.light-link {
    color: var(--orange)
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px
}

.work-tile {
    position: relative;
    overflow: hidden
}

.work-tile:nth-child(2),
.work-tile:nth-child(5) {
    grid-row: span 2
}

.work-tile img {
    height: 100%;
    transition: .5s
}

.work-tile:hover img,
.gallery-item:hover img {
    transform: scale(1.06)
}

.work-tile span,
.gallery-item span {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-shadow: 0 1px 5px #000
}

.artist-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.artist-mini img {
    height: 300px;
    filter: grayscale(1);
    transition: .3s
}

.artist-mini:hover img {
    filter: none
}

.artist-mini strong,
.artist-mini span {
    display: block
}

.artist-mini strong {
    font-size: 22px;
    margin-top: 12px
}

.artist-mini span {
    font-size: 12px;
    color: #777
}

.quote-section {
    padding: 100px 15vw;
    text-align: center;
    background: var(--orange)
}

.quote-mark {
    font: 8rem 'Bebas Neue';
    line-height: .5
}

.quote-section blockquote {
    font: clamp(2rem, 4vw, 4rem) 'Bebas Neue';
    line-height: 1;
    margin: 20px auto;
    max-width: 900px
}

.quote-section p {
    font-weight: 700
}

.page-hero {
    padding: 110px 8vw 90px;
    background: var(--accent);
    min-height: 440px
}

.page-hero p {
    max-width: 480px;
    font-size: 20px;
    margin-top: 28px
}

.page-hero.compact {
    min-height: 370px
}

.page-hero h1 em {
        color: #ece6e6;
            
            }

.cta-band h1 em,
.apply-band h2 em,
.quote-section em {
    color: #fff
}

.service-detail {
    display: grid;
    grid-template-columns: 70px 1fr 38%;
    gap: 30px;
    border-top: 1px solid var(--line);
    padding: 65px 0;
    align-items: center
}

.detail-index {
    color: var(--accent);
    font-weight: 700
}

.service-detail h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 18px
}

.service-detail p {
    max-width: 580px
}

.service-detail li {
    margin: 8px 0
}

.price {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent);
    font-size: 20px
}

.detail-art {
    height: 280px;
    transform: rotate(2deg);
    overflow: hidden
}

.detail-art img {
    height: 100%
}

.cta-band,
.apply-band {
    padding: 80px 8vw;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-band h2,
.apply-band h2 {
    font-size: 5rem
}

.btn-black {
    --accent: var(--ink);
    color: white
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap
}

.filter-btn {
    border: 1px solid var(--ink);
    background: none;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--ink);
    color: white
}

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

.gallery-item {
    border: 0;
    padding: 0;
    height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink)
}

.gallery-item:nth-child(3n) {
    height: 380px
}

.gallery-item img {
    height: 100%;
    transition: .4s
}

.gallery-item.hidden {
    display: none
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    z-index: 50;
    padding: 7vh 10vw;
    place-items: center
}

.lightbox.open {
    display: grid
}

.lightbox img {
    max-height: 80vh;
    max-width: 90vw;
    width: auto
}

.lightbox p {
    color: white
}

.lightbox-close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: white;
    background: none;
    border: 0;
    font-size: 3rem;
    cursor: pointer
}

.artists-grid,
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.artist-card,
.article-card {
    background: white
}

.artist-card>img {
    height: 360px
}

.artist-card>div,
.article-card>div {
    padding: 25px
}

.tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em
}

.artist-card h2,
.article-card h2 {
    font-size: 3rem;
    margin: 12px 0
}

.artist-card a,
.article-card a {
    color: var(--accent);
    font-weight: 700
}

.apply-band {
    background: var(--violet);
    color: white
}

.apply-band p {
    max-width: 300px
}

.manifesto {
    background: white
}

.manifesto>h2 {
    margin: 20px 0 30px
}

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px
}

.values>div {
    border-top: 3px solid var(--accent);
    padding-top: 15px
}

.values b {
    color: var(--accent)
}

.values h3 {
    font-size: 2.1rem;
    margin: 20px 0 10px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.team-grid img {
    height: 320px;
    filter: grayscale(1)
}

.team-grid strong,
.team-grid span {
    display: block
}

.team-grid strong {
    font-size: 20px;
    margin-top: 12px
}

.team-grid span {
    color: #777;
    font-size: 13px
}

.article-card>img {
    height: 240px
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 10vw;
    background: white
}

.contact-layout form {
    display: grid;
    gap: 20px
}

.form-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 12px;
    font-weight: 700
}

.form-head small {
    color: var(--accent)
}

label {
    font-size: 13px;
    font-weight: 700;
    display: grid;
    gap: 8px
}

input,
select,
textarea {
    border: 1px solid #bbb;
    background: var(--paper);
    padding: 14px;
    font: inherit;
    width: 100%
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.check {
    display: flex;
    grid-template-columns: auto 1fr;
    align-items: start;
    font-size: 11px;
    font-weight: 400
}

.check input {
    width: auto
}

.form-success {
    color: var(--green);
    font-weight: 700
}

.contact-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.contact-aside h2 {
    font-size: 4rem;
    margin: 20px 0
}

.contact-aside a {
    color: var(--accent);
    font-weight: 700
}

.map {
    height: 220px;
    margin-top: 40px
}

.map iframe {
    height: 100%;
    width: 100%;
    border: 0
}

.faq {
    background: var(--accent)
}

.faq h2 {
    margin: 20px 0 45px
}

.faq-list {
    max-width: 800px
}

.faq details {
    border-top: 1px solid var(--ink);
    padding: 20px 0
}

.faq summary {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between
}

.faq summary span {
    font-size: 25px
}

.faq details p {
    max-width: 600px
}

.legal {
    max-width: 950px;
    background: white
}

.legal h2 {
    font-size: 3rem;
    margin-top: 45px
}

.site-footer {
    background: var(--ink);
    color: white;
    padding: 60px 8vw 25px
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 55px
}

.brand-light .brand-mark i {
    background: white
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    border: 1px solid #555;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    display: grid;
    place-content: center;
    font-size: 12px
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px
}

.footer-bottom a {
    color: white
}

@media(max-width:850px) {
    .site-header {
        height: 72px
    }

    .menu-toggle {
        display: block;
        z-index: 2
    }

    .menu-toggle span {
        display: block;
        background: var(--ink);
        height: 2px;
        width: 25px;
        margin: 6px
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 25px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        border-bottom: 1px solid var(--line)
    }

    .main-nav.open {
        display: flex
    }

    .nav-cta {
        text-align: center
    }

    .hero-content {
        padding: 12vh 7vw
    }

    .hero-stamp {
        height: 90px;
        width: 90px;
        font-size: 1.8rem
    }

    .section-pad {
        padding: 70px 7vw
    }

    .intro-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .service-cards,
    .artists-grid,
    .articles-grid {
        grid-template-columns: 1fr
    }

    .masonry-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px
    }

    .artist-row {
        grid-template-columns: 1fr 1fr
    }

    .artist-mini img {
        height: 220px
    }

    .service-detail {
        grid-template-columns: 35px 1fr
    }

    .detail-art {
        grid-column: 2;
        height: 220px
    }

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

    .gallery-item,
    .gallery-item:nth-child(3n) {
        height: 240px
    }

    .values {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

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

    .cta-band,
    .apply-band,
    .footer-top {
        display: block
    }

    .cta-band h2,
    .apply-band h2 {
        font-size: 4rem;
        margin-bottom: 35px
    }

    .apply-band p {
        margin: 30px 0
    }

    .footer-top p {
        margin: 35px 0
    }

    .footer-bottom {
        display: block;
        line-height: 2
    }

    .footer-bottom span {
        display: block
    }

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

    .contact-aside {
        margin-top: 20px
    }

    .hero h1 {
        font-size: clamp(4rem, 16vw, 7rem)
    }
}