:root {
    --bg: #f4f4ef;
    --white: #ffffff;
    --black: #111111;
    --gray: #777777;
    --blue: #2563eb;
    --font: "Roboto Condensed", sans-serif;
}


/* ==================================================
   RESET
================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--black);

    font-family: var(--font);
    font-weight: 300;

    overflow-x: hidden;
}

body.intro-open {
    overflow: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font);
}

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

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

button {
    border: 0;
    font: inherit;
}


/* ==================================================
   NAVIGATION
================================================== */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(244, 244, 239, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
    width: min(1100px, 90%);
    min-height: 85px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.site-brand {
    display: flex;
    align-items: center;
}

.site-brand img {
    width: 60px;
    height: 60px;

    object-fit: contain;
}


/* MENU */

.site-menu {
    display: flex;
    align-items: center;

    gap: 35px;
}

.site-menu a,
.shop-nav-button {
    position: relative;

    padding: 0;

    background: transparent;
    color: var(--black);

    font-size: 0.82rem;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.06em;

    cursor: pointer;
}

.shop-nav-button {
    appearance: none;
    -webkit-appearance: none;

    margin: 0;

    border: 0;
    outline: 0;
}

.site-menu a::after,
.shop-nav-button::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width 0.25s ease;
}

.site-menu a:hover::after,
.shop-nav-button:hover::after {
    width: 100%;
}


/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    width: 100%;

    height: calc(100svh - 85px);
    min-height: 650px;

    padding-bottom: 62px;

    overflow: hidden;
}

.hero-stage {
    position: relative;

    width: 100%;
    height: calc(100% - 65px);

    min-height: 520px;

    margin: 0 auto;

    overflow: visible;

    isolation: isolate;

    touch-action: pan-x;
}


/* HERO CARDS */

.hero-card {
    position: absolute;

    top: 2%;
    left: 50%;

    width: min(1100px, 82vw);
    height: 94%;

    overflow: hidden;

    background: #ddd;

    opacity: 0;

    pointer-events: none;

    transform-origin: center;

    transition:
        transform 0.85s cubic-bezier(0.22, 0.75, 0.2, 1),
        opacity 0.55s ease;

    will-change: transform, opacity;
}

.hero-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-card.active {
    z-index: 20;

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0)
        rotate(0deg)
        scale(1);
}

.hero-card.prev {
    z-index: 12;

    opacity: 1;

    transform:
        translateX(-64%)
        translateY(32px)
        rotate(-4.2deg)
        scale(0.94);
}

.hero-card.next {
    z-index: 12;

    opacity: 1;

    transform:
        translateX(-36%)
        translateY(34px)
        rotate(4.3deg)
        scale(0.94);
}

.hero-card.far-prev {
    z-index: 6;

    opacity: 1;

    transform:
        translateX(-76%)
        translateY(70px)
        rotate(-6.5deg)
        scale(0.87);
}

.hero-card.far-next {
    z-index: 6;

    opacity: 1;

    transform:
        translateX(-24%)
        translateY(72px)
        rotate(6.5deg)
        scale(0.87);
}

.hero-card.hidden-card {
    z-index: 1;

    opacity: 0;

    transform:
        translateX(-50%)
        translateY(100px)
        scale(0.82);
}


/* ==================================================
   HERO TITLE
================================================== */

.hero-name {
    position: absolute;

    inset: 0;

    z-index: 30;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--white);

    text-align: center;

    pointer-events: none;
}

.hero-name span {
    font-size: clamp(4.8rem, 8.7vw, 8.8rem);
    font-weight: 300;

    line-height: 0.72;

    letter-spacing: -0.06em;

    text-transform: uppercase;
}


/* ==================================================
   HERO CAPTION
================================================== */

.hero-caption {
    position: absolute;

    left: 50%;
    bottom: 7px;

    z-index: 40;

    width: 100%;

    text-align: center;

    transform: translateX(-50%);
}


/* REMOVE HERO NUMBER */

.hero-number {
    display: none !important;
}

.hero-project-name {
    margin-top: 0;

    font-size: 0.9rem;
    font-weight: 400;

    text-transform: uppercase;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-top: 9px;
}

.hero-dots button {
    width: 18px;
    height: 2px;

    padding: 0;

    background: #bbb;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-dots button.active {
    width: 35px;

    background: var(--black);
}


/* ==================================================
   GENERAL SECTION HEADINGS
================================================== */

.editorial-heading {
    width: min(1100px, 90%);

    margin: 0 auto 80px;

    display: block;
}


/* REMOVE SECTION NUMBERS */

.editorial-heading > span {
    display: none !important;
}

.editorial-heading h2 {
    margin: 0;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;

    line-height: 0.88;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.editorial-heading p {
    margin-top: 20px;

    font-size: 0.9rem;
    font-weight: 400;

    letter-spacing: 0.08em;
}


/* ==================================================
   PROJECTS
================================================== */

.projects-section {
    padding: 120px 0 180px;

    background: var(--white);

    overflow: hidden;
}

.projects-top {
    width: min(1700px, 97%);

    margin: 0 auto 65px;

    padding-bottom: 30px;

    border-bottom: 1px solid #ccc;
}

.projects-heading {
    display: block;
}


/* REMOVE PROJECTS SECTION NUMBER */

.projects-number {
    display: none !important;
}

.projects-heading h2 {
    margin: 0;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;

    line-height: 0.88;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.projects-heading p {
    margin-top: 18px;

    font-size: 0.82rem;
    font-weight: 400;

    letter-spacing: 0.12em;
}


/* ==================================================
   PROJECT FILTERS
================================================== */

.project-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 45px;
    margin-left: 0;
}

.project-filter {
    position: relative;

    padding: 0 0 7px;

    background: transparent;

    color: var(--gray);

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.12em;

    cursor: pointer;

    transition: color 0.25s ease;
}

.project-filter::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width 0.25s ease;
}

.project-filter:hover,
.project-filter.active {
    color: var(--black);
}

.project-filter:hover::after,
.project-filter.active::after {
    width: 100%;
}


/* ==================================================
   PROJECT GRID
================================================== */

.projects-grid {
    width: min(1700px, 97%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 18px;
    row-gap: 90px;

    align-items: start;
}

.project-grid-item {
    position: relative;

    display: block;

    width: 100%;
    min-width: 0;

    cursor: pointer;
}

.project-grid-item.project-hidden {
    display: none;
}


/* PROJECT IMAGE */

.project-grid-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10.7;

    overflow: hidden;

    background: #e9e9e5;
}

.project-grid-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-grid-item:hover .project-grid-image img {
    transform: scale(1.025);
}


/* PROJECT OVERLAY */

.project-grid-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 27px;

    color: var(--white);

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.12) 38%,
            rgba(0, 0, 0, 0) 68%
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.25s ease;
}

.project-grid-item:hover .project-grid-overlay {
    opacity: 1;
}

.project-grid-overlay span {
    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.12em;
}

.project-grid-overlay i {
    font-size: 0.8rem;
}


/* PROJECT INFO */

.project-grid-info {
    display: block;

    width: 100%;

    padding-top: 18px;

    color: var(--black);
}


/* REMOVE PROJECT CARD NUMBERS */

.project-grid-number {
    display: none !important;
}

.project-grid-copy {
    min-width: 0;
}

.project-grid-copy h3 {
    margin: 0;

    font-size: clamp(1.4rem, 1.8vw, 2.2rem);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.025em;

    text-transform: uppercase;

    overflow-wrap: break-word;
}

.project-grid-copy p {
    margin-top: 9px;

    color: #666;

    font-size: 0.78rem;
    font-weight: 300;

    line-height: 1.4;

    letter-spacing: 0.04em;
}


/* ==================================================
   ABOUT US
================================================== */

.about-section {
    padding: 140px 0 160px;

    background: var(--bg);
    color: var(--black);

    overflow: hidden;
}

.about-section .editorial-heading {
    margin-bottom: 90px;
}

.about-content {
    width: min(1100px, 90%);
    max-width: 1100px;

    margin: 0 auto;
}


/* ABOUT BLOCK */

.about-block {
    display: grid;

    grid-template-columns:
        300px minmax(0, 1fr);

    gap: 80px;

    width: 100%;

    padding: 60px 0 80px;

    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.about-block-title {
    display: block;
}


/* REMOVE ABOUT NUMBERS */

.about-block-title > span {
    display: none !important;
}

.about-block-title h3 {
    max-width: 250px;

    margin: 0;

    font-size: 1.65rem;
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.02em;

    text-transform: uppercase;
}


/* ABOUT TEXT */

.about-text {
    width: 100%;
    max-width: 720px;
}

.about-text > p {
    margin: 0 0 32px;

    font-size: 1.05rem;
    font-weight: 300;

    line-height: 1.7;
}

.about-text > p:last-of-type {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: inherit;
}


/* FINAL STATEMENT */

.about-statement {
    margin-top: 48px;

    padding-top: 30px;

    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.about-statement p {
    margin: 0;

    font-size: 1.15rem;
    font-weight: 500;

    line-height: 1.5;
}

.about-statement p + p {
    margin-top: 10px;
}


/* ==================================================
   SERVICES
================================================== */

.services-section {
    padding: 140px 0 160px;

    background: var(--black);
    color: var(--white);

    overflow: hidden;
}

.services-section .editorial-heading {
    margin-bottom: 90px;
}

.services-content {
    width: min(1100px, 90%);
    max-width: 1100px;

    margin: 0 auto;
}


/* SERVICE GROUP */

.service-group {
    display: grid;

    grid-template-columns:
        300px minmax(0, 1fr);

    gap: 80px;

    width: 100%;

    padding: 60px 0 80px;

    border-top:
        1px solid rgba(255, 255, 255, 0.35);
}

.service-group-title {
    display: block;
}


/* REMOVE SERVICE NUMBERS */

.service-group-title > span {
    display: none !important;
}

.service-group-title h3 {
    max-width: 260px;

    margin: 0;

    font-size: 1.65rem;
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.02em;

    text-transform: uppercase;
}


/* SERVICE DETAILS */

.service-details {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.service-item {
    padding: 0 0 42px;

    margin-bottom: 42px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h4 {
    margin: 0 0 12px;

    font-size: 1.45rem;
    font-weight: 700;

    line-height: 1.15;
}

.service-item p {
    max-width: 720px;

    margin: 0;

    color: #c4c4c4;

    font-size: 1rem;
    font-weight: 300;

    line-height: 1.65;
}


/* OUR APPROACH */

.service-approach {
    display: grid;

    grid-template-columns:
        300px minmax(0, 1fr);

    gap: 80px;

    width: 100%;

    padding: 65px 0 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.35);
}


/* REMOVE APPROACH NUMBER */

.service-approach-number {
    display: none !important;
}


/* MOVE APPROACH CONTENT TO RIGHT COLUMN */

.service-approach > div {
    grid-column: 2;
}

.service-approach h3 {
    margin: 0 0 20px;

    font-size: 1.65rem;
    font-weight: 700;

    letter-spacing: -0.02em;

    text-transform: uppercase;
}

.service-approach p {
    max-width: 760px;

    margin: 0;

    color: var(--white);

    font-size: 1.3rem;
    font-weight: 500;

    line-height: 1.5;
}


/* ==================================================
   CONTACT
================================================== */

.contact-section {
    min-height: 90vh;

    padding: 150px 5%;

    background: var(--white);

    display: grid;

    grid-template-columns:
        1fr 0.6fr;

    gap: 80px;

    align-items: start;
}


/* REMOVE CONTACT NUMBER */

.contact-number {
    display: none !important;
}

.contact-main > p {
    margin-bottom: 30px;

    font-size: 0.75rem;
    font-weight: 400;

    letter-spacing: 0.15em;
}

.contact-main h2 {
    margin: 0;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;

    line-height: 0.88;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.contact-details {
    padding-top: 50px;
}

.contact-details > div {
    padding: 20px 0;

    border-bottom: 1px solid #ccc;
}

.contact-details > div > span {
    display: block;

    margin-bottom: 7px;

    font-size: 0.7rem;
    font-weight: 400;

    letter-spacing: 0.1em;
}


/* LOCATION */

.contact-info {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: var(--black);

    font-size: 1rem;
}

.contact-info i {
    width: 16px;

    margin-top: 2px;

    flex: 0 0 16px;

    text-align: center;
}


/* CONTACT LINKS */

.contact-details a {
    display: flex;
    align-items: center;

    gap: 8px;

    width: max-content;
    max-width: 100%;

    color: var(--blue);

    font-size: 1rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-details a i {
    width: 16px;

    text-align: center;
}

.contact-details a:hover {
    color: #1d4ed8;

    text-decoration: underline;

    transform: translateX(3px);
}


/* VIBER */

.contact-phone .contact-link i {
    color: #7360f2;
}


/* QR */

.contact-phone .contact-qr-image {
    width: 145px;
    height: 145px;

    margin-top: 18px;

    overflow: hidden;

    background: var(--white);
}

.contact-phone .contact-qr-image img {
    width: 145px;
    height: 145px;

    object-fit: contain;
}

.contact-phone .contact-qr-text {
    max-width: 220px;

    margin-top: 10px;

    color: var(--gray);

    font-size: 0.75rem;

    line-height: 1.4;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    min-height: 100px;

    padding: 0 5%;

    background: var(--black);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 0.75rem;
    font-weight: 400;

    letter-spacing: 0.08em;
}


/* ==================================================
   PROJECT GALLERY
================================================== */

.gallery-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.88);
}

.gallery-box {
    position: relative;

    z-index: 2;

    width: 94%;
    height: 92vh;

    background: var(--white);

    display: grid;

    grid-template-columns:
        2fr 0.75fr;

    overflow: hidden;

    transform: translateY(15px);

    transition: transform 0.22s ease;
}

.gallery-modal.active .gallery-box {
    transform: translateY(0);
}

.gallery-left {
    background: var(--black);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.gallery-left img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transition: opacity 0.18s ease;
}

.gallery-left img.loaded {
    opacity: 1;
}

.gallery-right {
    padding: 50px;

    overflow-y: auto;
}

.gallery-right > span {
    font-size: 0.7rem;
    font-weight: 400;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.gallery-right h2 {
    margin: 20px 0;

    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;

    line-height: 0.9;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}


/* THUMBNAILS */

#galleryThumbs {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 35px;
}

.gallery-thumb {
    padding: 0;

    background: none;

    border: 1px solid transparent;

    cursor: pointer;

    overflow: hidden;
}

.gallery-thumb.active {
    border-color: var(--black);
}

.gallery-thumb img {
    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.gallery-close {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 10;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--white);

    color: var(--black);

    cursor: pointer;
}


/* ==================================================
   SHOP MODAL - OPTIMIZED
================================================== */

.shop-modal {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease;
}

.shop-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.shop-modal-box {
    position: relative;

    z-index: 2;

    width: min(560px, 92vw);

    padding: 65px 60px 55px;

    background: var(--bg);
    color: var(--black);

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;

    will-change: transform, opacity;
}

.shop-modal.active .shop-modal-box {
    opacity: 1;

    transform: translateY(0);
}

.shop-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    color: var(--black);

    font-size: 1rem;

    cursor: pointer;

    transition: opacity 0.15s ease;
}

.shop-modal-close:hover {
    opacity: 0.5;
}

.shop-modal-label {
    display: block;

    margin-bottom: 30px;

    font-size: 0.68rem;
    font-weight: 400;

    letter-spacing: 0.18em;
}

.shop-modal-box h2 {
    margin: 0;

    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;

    line-height: 0.88;

    letter-spacing: -0.04em;

    text-transform: uppercase;
}

.shop-modal-box > p {
    max-width: 390px;

    margin-top: 35px;

    color: #555;

    font-size: 1rem;
    font-weight: 300;

    line-height: 1.6;
}

.shop-modal-small {
    display: block;

    margin-top: 45px;

    padding-top: 18px;

    border-top: 1px solid #bbb;

    font-size: 0.68rem;
    font-weight: 500;

    letter-spacing: 0.15em;
}


/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.show {
    opacity: 1;

    transform: none;
}


/* ==================================================
   INTRO
================================================== */

.site-intro {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bg);

    overflow: hidden;

    transition:
        opacity 0.65s ease,
        visibility 0.65s ease;
}

.site-intro::before,
.site-intro::after {
    content: "";

    position: absolute;

    top: 0;

    width: 50.2%;
    height: 100%;

    z-index: 1;

    background: var(--bg);

    transition:
        transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.site-intro::before {
    left: 0;
}

.site-intro::after {
    right: 0;
}

.intro-content {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;

    transition:
        opacity 0.35s ease,
        transform 0.5s ease;
}

.intro-mark {
    width: 120px;
    height: 120px;

    opacity: 0;

    transform:
        translateY(14px)
        scale(0.9);

    animation:
        introLogo
        0.75s
        cubic-bezier(0.22, 0.75, 0.2, 1)
        0.12s
        forwards;
}

.intro-mark img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.intro-line {
    width: 0;
    height: 1px;

    background: var(--black);

    animation:
        introLine
        0.55s
        ease
        0.5s
        forwards;
}

.intro-content p {
    padding-left: 0.32em;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.32em;

    opacity: 0;

    transform: translateY(7px);

    animation:
        introText
        0.5s
        ease
        0.6s
        forwards;
}

.site-intro.reveal-site .intro-content {
    opacity: 0;

    transform: scale(0.96);
}

.site-intro.reveal-site::before {
    transform: translateX(-100%);
}

.site-intro.reveal-site::after {
    transform: translateX(100%);
}

.site-intro.hide {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* ==================================================
   INTRO ANIMATIONS
================================================== */

@keyframes introLogo {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes introLine {
    to {
        width: 55px;
    }
}

@keyframes introText {
    to {
        opacity: 1;
        transform: none;
    }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .site-menu {
        gap: 20px;
    }


    /* HERO */

    .hero-card {
        width: 82vw;
    }

    .hero-card.prev {
        transform:
            translateX(-62%)
            translateY(28px)
            rotate(-3.5deg)
            scale(0.94);
    }

    .hero-card.next {
        transform:
            translateX(-38%)
            translateY(28px)
            rotate(3.5deg)
            scale(0.94);
    }

    .hero-card.far-prev {
        transform:
            translateX(-72%)
            translateY(60px)
            rotate(-5.5deg)
            scale(0.88);
    }

    .hero-card.far-next {
        transform:
            translateX(-28%)
            translateY(60px)
            rotate(5.5deg)
            scale(0.88);
    }


    /* PROJECTS */

    .projects-top,
    .projects-grid {
        width: 95%;
    }

    .projects-grid {
        column-gap: 14px;
        row-gap: 65px;
    }

    .project-grid-copy h3 {
        font-size:
            clamp(1.3rem, 2.5vw, 1.8rem);
    }


    /* ABOUT */

    .about-content {
        width: 90%;
    }

    .about-block {
        grid-template-columns:
            220px minmax(0, 1fr);

        gap: 45px;
    }

    .about-block-title h3 {
        font-size: 1.4rem;
    }


    /* SERVICES */

    .services-content {
        width: 90%;
    }

    .service-group,
    .service-approach {
        grid-template-columns:
            220px minmax(0, 1fr);

        gap: 45px;
    }

    .service-approach > div {
        grid-column: 2;
    }

    .service-group-title h3,
    .service-approach h3 {
        font-size: 1.4rem;
    }


    /* CONTACT */

    .contact-section {
        grid-template-columns:
            1fr 0.75fr;

        gap: 50px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    /* NAV */

    .nav-inner {
        width: 92%;

        min-height: 70px;
    }

    .site-brand img {
        width: 45px;
        height: 45px;
    }

    .mobile-menu-btn {
        display: flex;

        width: 45px;
        height: 45px;

        padding: 0;

        background: none;

        flex-direction: column;
        justify-content: center;

        gap: 7px;

        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;

        width: 25px;
        height: 1px;

        margin-left: auto;

        background: var(--black);
    }

    .site-menu {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 25px 5%;

        background: rgba(244, 244, 239, 0.98);

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .site-menu.active {
        display: flex;
    }


    /* HERO */

    .hero {
        height: calc(100svh - 70px);

        min-height: 590px;

        padding-bottom: 55px;
    }

    .hero-stage {
        height: calc(100% - 60px);
    }

    .hero-card {
        top: 3%;

        width: 84vw;
        height: 92%;
    }

    .hero-card.prev {
        transform:
            translateX(-58%)
            translateY(18px)
            rotate(-2.5deg)
            scale(0.96);
    }

    .hero-card.next {
        transform:
            translateX(-42%)
            translateY(18px)
            rotate(2.5deg)
            scale(0.96);
    }

    .hero-card.far-prev {
        transform:
            translateX(-65%)
            translateY(38px)
            rotate(-4deg)
            scale(0.91);
    }

    .hero-card.far-next {
        transform:
            translateX(-35%)
            translateY(38px)
            rotate(4deg)
            scale(0.91);
    }

    .hero-name span {
        font-size: 15vw;

        line-height: 0.74;
    }

    .hero-project-name {
        font-size: 0.78rem;
    }


    /* HEADINGS */

    .editorial-heading {
        width: 90%;
    }

    .editorial-heading h2,
    .projects-heading h2,
    .contact-main h2 {
        font-size: 11vw;
    }


    /* PROJECTS */

    .projects-section {
        padding: 90px 0 110px;
    }

    .projects-top {
        width: 94%;

        margin-bottom: 45px;

        padding-bottom: 25px;
    }

    .projects-heading p {
        margin-top: 15px;
    }

    .project-filters {
        margin-top: 35px;
        margin-left: 0;

        gap: 20px;
    }

    .project-filter {
        font-size: 0.66rem;
    }

    .projects-grid {
        width: 94%;

        grid-template-columns: 1fr;

        column-gap: 0;
        row-gap: 55px;
    }

    .project-grid-image {
        aspect-ratio: 4 / 3;
    }

    .project-grid-info {
        padding-top: 14px;
    }

    .project-grid-copy h3 {
        font-size: 1.6rem;
    }

    .project-grid-overlay {
        padding: 18px;
    }


    /* ABOUT */

    .about-section {
        padding: 100px 0;
    }

    .about-section .editorial-heading {
        margin-bottom: 55px;
    }

    .about-content {
        width: 90%;
        max-width: none;
    }

    .about-block {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0 60px;
    }

    .about-block-title h3 {
        font-size: 1.4rem;
    }

    .about-text {
        max-width: none;
    }

    .about-text > p {
        margin-bottom: 26px;

        font-size: 0.95rem;

        line-height: 1.65;
    }

    .about-statement {
        margin-top: 35px;

        padding-top: 25px;
    }

    .about-statement p {
        font-size: 1.05rem;
    }


    /* SERVICES */

    .services-section {
        padding: 100px 0;
    }

    .services-section .editorial-heading {
        margin-bottom: 55px;
    }

    .services-content {
        width: 90%;
        max-width: none;
    }

    .service-group {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 45px 0 60px;
    }

    .service-group-title h3 {
        font-size: 1.4rem;
    }

    .service-item {
        padding-bottom: 32px;

        margin-bottom: 32px;
    }

    .service-item h4 {
        font-size: 1.25rem;
    }

    .service-item p {
        font-size: 0.95rem;

        line-height: 1.6;
    }

    .service-approach {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 50px;
    }

    .service-approach > div {
        grid-column: 1;
    }

    .service-approach h3 {
        font-size: 1.4rem;
    }

    .service-approach p {
        font-size: 1.1rem;

        line-height: 1.55;
    }


    /* CONTACT */

    .contact-section {
        padding: 100px 5%;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-details {
        padding-top: 30px;
    }

    .contact-phone .contact-qr-image,
    .contact-phone .contact-qr-image img {
        width: 145px;
        height: 145px;
    }


    /* FOOTER */

    .footer {
        padding: 30px 5%;

        flex-direction: column;

        gap: 15px;

        align-items: flex-start;
    }


    /* GALLERY */

    .gallery-box {
        width: 96%;

        height: 94svh;

        grid-template-columns: 1fr;

        grid-template-rows:
            45% 55%;
    }

    .gallery-right {
        padding: 25px 20px;
    }


    /* SHOP */

    .shop-modal-box {
        width: min(500px, 92vw);

        padding: 55px 30px 40px;
    }

    .shop-modal-box h2 {
        font-size: 12vw;
    }

    .shop-modal-box > p {
        font-size: 0.95rem;
    }


    /* INTRO */

    .intro-mark {
        width: 100px;
        height: 100px;
    }

    .intro-content p {
        font-size: 10px;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 420px) {

    .site-brand img {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-name span {
        font-size: 15.5vw;
    }

    .project-grid-copy h3 {
        font-size: 1.45rem;
    }

    .project-filters {
        gap: 15px;
    }

    .contact-phone .contact-qr-image,
    .contact-phone .contact-qr-image img {
        width: 135px;
        height: 135px;
    }

    .shop-modal-box {
        padding: 50px 25px 35px;
    }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .shop-modal,
    .shop-modal-box,
    .gallery-modal,
    .gallery-box {
        transition: none;
    }
}