:root {
    --void: #0d0d0d;
    --ink: #161616;
    --paper: #efefec;
    --mist: #f7f7f4;
    --muted: #6a6a65;
    --line: #d5d5d0;
    --signal: #c4122f;
    --signal-deep: #8f0d22;
    --white: #ffffff;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, .03), transparent 28vh),
        radial-gradient(ellipse 80% 40% at 100% 0%, rgba(196, 18, 47, .06), transparent 50%),
        var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    background: rgba(13, 13, 13, .92);
    padding-block: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    backdrop-filter: blur(16px);
}

.brand img {
    width: 132px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 10px 14px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
}

.site-nav .nav-cta {
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, .35);
    padding-inline: 18px;
    color: var(--white);
}

.site-nav .nav-cta:hover {
    background: var(--white);
    color: var(--void);
    border-color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    align-items: end;
    padding: 140px clamp(20px, 5vw, 72px) 72px;
    overflow: hidden;
    color: var(--white);
    background: var(--void);
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slides {
    z-index: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.06);
    transition: opacity .9s var(--ease), transform 8s linear;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, .35) 0%, rgba(13, 13, 13, .2) 35%, rgba(13, 13, 13, .78) 100%),
        linear-gradient(90deg, rgba(13, 13, 13, .72), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
}

.brand-mark {
    margin: 0 0 18px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 92px);
    line-height: .9;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero .brand-mark {
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 8px 40px rgba(0, 0, 0, .45);
}

.hero-copy {
    position: absolute;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.hero-copy.is-active {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--signal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 78px);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 400;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 400;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-content p {
    max-width: 34rem;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 36px;
    height: 2px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--signal);
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .55);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    padding: 12px 24px;
    background: var(--signal);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s var(--ease), color .2s ease, border-color .2s ease;
}

.button:hover {
    background: var(--signal-deep);
    transform: translateY(-2px);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
}

.button-ghost:hover {
    background: var(--white);
    color: var(--void);
    border-color: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--void);
}

.button-light:hover {
    background: var(--paper);
    color: var(--void);
}

.button-dark {
    background: var(--void);
}

.section-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.intro-block {
    padding-block: clamp(72px, 10vw, 120px);
    max-width: 820px;
}

.intro-block p:last-child {
    color: var(--muted);
    font-size: 18px;
    font-weight: 300;
}

.service-band,
.team-band,
.process-band {
    padding-block: clamp(72px, 9vw, 120px);
}

.service-band {
    background: var(--mist);
}

.process-band {
    background:
        linear-gradient(135deg, rgba(196, 18, 47, .04), transparent 40%),
        var(--mist);
}

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

.section-heading h2 {
    margin-bottom: 0;
    max-width: 16ch;
}

.text-link {
    color: var(--signal);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}

.service-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    padding-block: 28px;
    border-bottom: 1px solid var(--line);
}

.service-row img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(.15) contrast(1.05);
    transition: filter .35s ease, transform .5s var(--ease);
}

.service-row:hover img {
    filter: none;
    transform: scale(1.02);
}

.service-row span {
    display: block;
    margin-bottom: 8px;
    color: var(--signal);
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: .06em;
}

.service-row p {
    margin: 0;
    color: var(--muted);
    max-width: 42ch;
}

.gallery-section {
    padding-block: clamp(72px, 9vw, 120px);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-row button {
    min-height: 38px;
    border: 1px solid var(--line);
    padding: 8px 14px;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-row button.is-active,
.filter-row button:hover {
    border-color: var(--void);
    background: var(--void);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    margin: 0;
    min-height: 280px;
    overflow: hidden;
    background: var(--void);
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 2px;
    padding: 48px 16px 16px;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s var(--ease);
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
    opacity: 1;
    transform: none;
}

.gallery-item span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.process-copy p {
    color: var(--muted);
    font-size: 17px;
    font-weight: 300;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.steps li {
    padding: 28px 24px;
    background: var(--white);
}

.steps span {
    display: block;
    margin-bottom: 14px;
    color: var(--signal);
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: .08em;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

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

.team-card,
.artist-card {
    background: transparent;
}

.team-card img,
.artist-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 16px;
    filter: grayscale(.2) contrast(1.04);
    transition: filter .35s ease;
}

.team-card:hover img,
.artist-card:hover img {
    filter: none;
}

.team-card h3,
.artist-card h2 {
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.team-card p,
.artist-card p {
    margin: 0;
    color: var(--muted);
}

.page-hero {
    min-height: 56vh;
    display: grid;
    align-items: end;
    padding: 150px 0 72px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(13, 13, 13, .45), rgba(13, 13, 13, .78)),
        url('../pics/2.jpeg') center / cover no-repeat;
}

.page-hero-about {
    background-image:
        linear-gradient(180deg, rgba(13, 13, 13, .45), rgba(13, 13, 13, .78)),
        url('../pics/3.jpeg');
}

.page-hero-team {
    background-image:
        linear-gradient(180deg, rgba(13, 13, 13, .45), rgba(13, 13, 13, .78)),
        url('../pics/4.jpeg');
}

.page-hero .brand-mark {
    font-size: clamp(28px, 5vw, 48px);
}

.page-hero h1 {
    max-width: 16ch;
}

.page-hero p:not(.brand-mark) {
    max-width: 40rem;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    font-weight: 300;
}

.split-content,
.about-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 64px);
    padding-block: clamp(64px, 8vw, 100px);
}

.split-content article {
    padding-top: 20px;
    border-top: 2px solid var(--void);
}

.split-content p,
.rich-text p {
    color: var(--muted);
    font-size: 17px;
    font-weight: 300;
}

.service-listing {
    display: grid;
    gap: 0;
    padding-bottom: clamp(72px, 9vw, 120px);
    border-top: 1px solid var(--line);
}

.wide-row {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding-block: 32px;
    border-bottom: 1px solid var(--line);
}

.wide-row img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.wide-row span {
    display: block;
    margin-bottom: 8px;
    color: var(--signal);
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: .06em;
}

.about-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-media img:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
}

.rich-text h2:not(:first-child) {
    margin-top: 40px;
}

.artist-card {
    display: grid;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.social-row a {
    color: var(--signal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 48px 0;
    border-top: 1px solid var(--line);
}

.contact-band {
    padding-block: clamp(72px, 9vw, 120px);
    background: var(--void);
    color: var(--white);
}

.contact-band .eyebrow {
    color: rgba(255, 255, 255, .55);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(32px, 6vw, 80px);
}

.contact-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    max-width: 36ch;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 32px;
    font-size: 16px;
    font-weight: 500;
}

.contact-list a:hover {
    color: var(--signal);
}

.appointment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
}

.appointment-form label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .06);
    color: var(--white);
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    outline: 1px solid var(--signal);
    border-color: var(--signal);
}

.appointment-form option {
    color: var(--ink);
}

.appointment-form textarea {
    resize: vertical;
}

.span-2 {
    grid-column: span 2;
}

.form-response {
    margin: 0;
    min-height: 22px;
    color: #9be7b0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(.85) contrast(1.05);
}

.site-footer {
    background: #080808;
    color: rgba(255, 255, 255, .7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 36px;
    padding-block: 48px;
}

.footer-grid p {
    max-width: 32ch;
    font-weight: 300;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links a {
    font-weight: 500;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 12px;
        background: rgba(13, 13, 13, .97);
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .gallery-grid,
    .team-grid,
    .team-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row,
    .wide-row,
    .process-grid,
    .split-content,
    .about-layout,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-row img,
    .wide-row img {
        max-width: 420px;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand img {
        width: 108px;
    }

    .hero {
        padding: 120px 20px 48px;
    }

    .brand-mark {
        font-size: clamp(36px, 12vw, 56px);
    }

    .gallery-grid,
    .team-grid,
    .team-page-grid,
    .steps,
    .appointment-form {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

    .filter-row {
        justify-content: flex-start;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 320px;
    }

    .gallery-item figcaption {
        opacity: 1;
        transform: none;
    }

    h1 {
        font-size: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
