/* =========================================================
   GLOBAL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;

    background-color: #fbf8ed;

    overflow-x: hidden;

    color: #000;
}

body.modal-open {
    overflow: hidden;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


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

footer {
    width: 100%;

    margin-top: 100px;

    padding: 3rem 2rem;

    text-align: center;

    font-size: x-small;

    color: #000;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

p,
li {
    font-family: "Figtree", sans-serif;

    font-size: 11pt;

    font-weight: 400;

    color: #000;

    line-height: 1.5;
}

h2 {
    font-family: "Figtree", sans-serif;

    font-size: 24pt;

    font-weight: 700;

    color: #000;

    text-align: left;

    line-height: 1.1;

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

h3 {
    font-family: "Figtree", sans-serif;

    font-size: 18pt;

    font-weight: 700;

    color: #425563;

    text-align: left;

    line-height: 1.2;

    margin-top: 0;
}

h4 {
    font-family: "Figtree", sans-serif;

    font-size: 14pt;

    font-weight: 700;

    color: #000;

    text-align: left;

    line-height: 1.25;

    margin-top: 30px;

    margin-bottom: 8px;
}

p {
    margin-top: 0;
}


/* =========================================================
   MAIN ARTICLE
   ========================================================= */

article {
    width: min(1200px, calc(100% - 80px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   INLINE LOGO
   ========================================================= */

.inlineLogo {
    width: 100%;

    padding-top: 150px;

    text-align: center;
}

.inlineLogo img {
    display: block;

    width: 100%;

    max-width: 1000px;

    height: auto;

    margin: 0 auto;
}


/* =========================================================
   MATERIAL SAMPLES
   ========================================================= */

.materials {
    display: grid;

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

    gap: clamp(5px, 1.5vw, 20px);

    align-items: center;

    width: 100%;

    margin: 50px auto;
}

.materials img {
    display: block;

    width: 100%;

    max-width: 190px;

    height: auto;

    padding: 40px 5px;

    margin: 0 auto;
}


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

.about {
    display: grid;

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

    gap: clamp(30px, 5vw, 80px);

    align-items: center;

    width: 100%;

    margin-top: 80px;
    position: relative;
}

.about > img {
    display: block;

    width: 100%;

    max-width: 550px;

    height: auto;

    margin: 0 auto;
}

.about-content {
    min-width: 0;
}

.about-content h2 {
    margin-left: -0px;
}


/* =========================================================
   ANIMATED LOGO STACK
   ========================================================= */

.logo-stack {
    position: relative;

    width: min(350px, 100%);

    aspect-ratio: 1 / 1;

    margin: 0 auto 60px auto;
}

.logo-stack img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transition:
        none;
}

.logo-stack img.active {
    opacity: 1;
}


/* =========================================================
   DESIGN STRATEGY
   ========================================================= */

.design {
    display: grid;

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

    gap: clamp(40px, 5vw, 50px);

    align-items: start;

    width: 100%;

    margin-top: 100px;

    margin-bottom: 100px;

    position: relative;
}

.design-content {
    min-width: 0;

    margin-top: 50px;
}

.design-content h2 {
    margin-left: 0;
}

.design-content ul {
    padding-left: 25px;

    margin-top: 10px;
}

.design-content li {
    margin-bottom: 8px;
    
}

.color {
    width: 100%;
}

.color img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0px 30px 0px;
}

.labelmock {
    width: 100%;

    margin-top: 80px;
}

.labelmock img {
    display: block;

    width: 100%;

    max-width: 500px;

    height: auto;

    margin: 20px auto;
}


/* =========================================================
   SECTION DIVIDERS
   ========================================================= */

article > .design::before,
article > .StyleGuide::before,
article > .labels::before,
article > .iconography::before,
article > .displayIcons::before,
article > .webIcons::before,
article > .signs::before,
article > .book-carousel::before,
article > .expo::before {
    content: "";

    position: absolute;

    top: -40px;

    left: 0;

    width: 100%;

    height: 1px;

    background: #425563;

    opacity: 0.25;
}


/* =========================================================
   STYLE GUIDE
   ========================================================= */

.StyleGuide {
    position: relative;

    width: 100%;

    margin-top: 60px;
    padding-top: 10px;
    margin-bottom: 150px;
}

.style-guide-content {
    width: 100%;

    margin: 0 auto;
}


/* =========================================================
   STYLE GUIDE TEXT
   ========================================================= */

.style-guide-content h3 {
    width: 100%;

    margin: 0 0 10px 0;

    text-align: left;
}

.style-guide-content > p {
    width: 100%;

    margin: 0 0 35px 0;

    text-align: left;
}


/* =========================================================
   STYLE GUIDE DESKTOP LAYOUT
   ========================================================= */

.style-guide-content {
    display: grid;

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

    align-items: start;
}


/* Heading and paragraph span full width */

.style-guide-content h3,
.style-guide-content > p {
    grid-column: 1 / -1;
}


/* =========================================================
   STYLE GUIDE LOGO IMAGES
   ========================================================= */

.style-guide-content > img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;

    margin-left: auto;
    margin-right: auto;
}


/* Circle logo */

.style-guide-content > img:nth-of-type(1) {
    grid-column: 2;

    grid-row: 3;

    max-width: 600px;

    margin-top: -80px;
}


/* Inline logo */

.style-guide-content > img:nth-of-type(2) {
    grid-column: 2;

    grid-row: 4;

    max-width: 600px;

    margin-top: -150px;
}


/* =========================================================
   STYLE GUIDE BUTTONS
   ========================================================= */

.style-guide-buttons {
    grid-column: 1;

    grid-row: 3;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: flex-end;

    gap: 15px;

    width: 100%;

    margin-top: 0;
}

.style-preview-btn {
    width: 160px;

    padding: 12px 20px;

    border: 1px solid #425563;

    border-radius: 0;

    background: transparent;

    color: #425563;

    font-family: "Figtree", sans-serif;

    font-size: 10pt;

    font-weight: 600;

    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.style-preview-btn:hover {
    background: #425563;

    color: white;

    transform: translateY(-2px);
}

.style-preview-btn:focus-visible {
    outline: 2px solid #425563;

    outline-offset: 4px;
}


/* =========================================================
   STYLE GUIDE MODAL
   ========================================================= */

.label-modal {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

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

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 10000;

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

.label-modal.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   MODAL CONTENT
   ========================================================= */

.label-modal-content {
    position: relative;

    width: min(1000px, 95vw);

    max-height: 90vh;

    padding: 30px;

    background: #fbf8ed;

    border: 2px solid #425563;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    overflow-y: auto;

    transform: scale(0.95);

    transition:
        transform 0.3s ease;
}

.label-modal.active .label-modal-content {
    transform: scale(1);
}


/* =========================================================
   MODAL TITLE
   ========================================================= */

.label-modal-title {
    margin: 0 0 25px 0;

    font-family: "Figtree", sans-serif;

    font-size: 20pt;

    font-weight: 700;

    color: #000;

    text-align: center;
}


/* =========================================================
   MODAL IMAGES
   ========================================================= */

.label-modal-images {
    width: 100%;
}

.label-modal-images img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 450px;

    object-fit: contain;
}


/* =========================================================
   MODAL CLOSE
   ========================================================= */

.label-modal-close {
    position: absolute;

    top: 10px;

    right: 12px;

    width: 40px;

    height: 40px;

    border: none;

    background: transparent;

    color: #425563;

    font-family: Arial, sans-serif;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

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

.label-modal-close:hover {
    color: #000;

    transform: scale(1.1);
}


/* =========================================================
   LABELS
   ========================================================= */

.labels {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: clamp(30px, 6vw, 100px);

    align-items: center;

    width: 100%;

    margin-top: 80px;
}

.realLabel {
    min-width: 0;
}

.realLabel img {
    display: block;

    width: 100%;

    max-width: 600px;

    height: auto;

    margin: 0 auto;
}

.labels-content {
    min-width: 0;
}

.labels-content h3 {
    margin-top: 0;
}


/* =========================================================
   LABEL BUTTONS
   ========================================================= */

.label-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}

.label-preview-btn,
.centerImg button {
    padding: 12px 35px;

    border: 1px solid #425563;

    border-radius: 0;

    background: transparent;

    color: #425563;

    font-family: "Figtree", sans-serif;

    font-size: 10pt;

    font-weight: 600;

    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.label-preview-btn:hover,
.centerImg button:hover {
    background: #425563;

    color: white;

    transform: translateY(-2px);
}


/* =========================================================
   ICONOGRAPHY
   ========================================================= */

.iconography {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: clamp(80px, 5vw, 80px);
    align-items: start;
    width: 100%;
    margin-top: 80px;
}

.iconography-content {
    min-width: 0;
}

.iconography-content h3 {
    margin-top: 0;
}

.iconography p {
    margin-bottom: 15px;
}

.icon-row {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 4px;
}

.icon-row img {
    width: clamp(55px, 6vw, 90px);

    height: auto;
}

#fabrication {
    min-width: 0;
    margin-top: 60px;
}


/* =========================================================
   DISPLAY ICONS
   ========================================================= */

.displayIcons {
    position: relative;

    display: grid;

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

    gap: 30px;
    align-items: start;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 70px;
}

.display-content {
    min-width: 0;
}

#iconsdisplay {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.displayIcons #iconsdisplay img,
.webIcons #iconsdisplay img {
    width: clamp(50px, 5vw, 72px);
    height: auto;
}


/* =========================================================
   WEBSITE ICONS
   ========================================================= */

.webIcons {
    position: relative;

    display: grid;

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

    gap: 30px;

    align-items: start;

    width: 100%;

    margin-top: 40px;
}

.web-content {
    min-width: 0;
}

.webIcons #iconsdisplay img {
    margin-top: 10px;
}


/* =========================================================
   DISPLAY SIGNAGE
   ========================================================= */

.signs {
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.signs h2 {
    margin-top: 0;
    margin-left: -0px
}

.signs p{
    margin-bottom: 50px;
    margin-left: -0px;
}


.sign-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.sign-gallery img {
    width: auto;
    max-height: 460px;

    padding: 5px;
    object-fit: contain;
}


/* =========================================================
   BOOK CAROUSEL
   ========================================================= */

.book-carousel {
    position: relative;

    width: 100%;

    margin: 120px 0;
}

.bookpara h2 {
    margin-left: -0px
}
.bookpara p {
    margin-left: -0px
}

.carousel-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
}

.carousel {
    width: 100%;

    overflow: hidden;

    padding: 20px 0;
}

.carousel-track {
    display: flex;

    gap: clamp(20px, 3vw, 50px);

    align-items: center;

    transition:
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-page {
    flex: 0 0 min(850px, 100%);

    width: min(850px, 100%);

    aspect-ratio: 17 / 11;

    background: white;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.15);
}

.book-page img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;
}


/* =========================================================
   CAROUSEL BUTTONS
   ========================================================= */

.carousel-btn {
    position: relative;

    z-index: 5;

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #425563;

    color: white;

    font-size: 22px;

    cursor: pointer;

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

.carousel-btn:hover {
    background: #000;

    transform: scale(1.08);
}

.carousel-btn.prev {
    margin-right: 15px;
}

.carousel-btn.next {
    margin-left: 15px;
}


/* =========================================================
   CAROUSEL DOTS
   ========================================================= */

.carousel-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}


/* =========================================================
   EXPO
   ========================================================= */

.expo {
    position: relative;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    gap: 10px;

    width: 100%;

    margin-top: 100px;
}

.expo h2 {
    width: 100%;

    margin: 0 0 20px 0;

    text-align: left;
}

.expo img {
    width: auto;

    height: clamp(180px, 20vw, 300px);

    max-width: 100%;

    padding: 5px;

    object-fit: contain;
}


/* =========================================================
   BACK BUTTON
   ========================================================= */

.centerImg {
    text-align: center;

    margin-top: 100px;

    margin-bottom: 20px;
}


/* =========================================================
   TABLET
   769px - 1100px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    article {
        width: calc(100% - 80px);
    }

    p,
    li {
        font-size: 10pt;

        line-height: 1.5;
    }

    h2 {
        font-size: 20pt;
    }

    h3 {
        font-size: 15pt;
    }

    h4 {
        font-size: 11pt;
    }

    .inlineLogo {
        padding-top: 130px;
    }

    .inlineLogo img {
        width: 85%;

        max-width: 750px;
    }

    .materials {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;

        max-width: 750px;
    }

    .materials img {
        max-width: 180px;

        padding: 20px 0;
    }

    .about {
        gap: 40px;

        margin-top: 70px;
    }

    .about > img {
        max-width: 450px;
    }

    .logo-stack {
        width: min(260px, 100%);

        margin-bottom: 40px;
    }

    .design {
        gap: 35px;

        margin-top: 80px;

        margin-bottom: 80px;
    }

    .design-content {
        margin-top: 20px;
    }

    .color img,
    .labelmock img {
        max-width: 100%;
    }

    .labelmock {
        margin-top: 20px;
    }

    .labels {
        gap: 40px;
        margin-top: 70px;
    }

    .realLabel img {
        max-width: 100%;
    }

    .iconography {
        gap: 30px;
        margin-top: 70px;
    }

    .icon-row img {
        width: 62px;
    }

    .displayIcons,
    .webIcons {
        grid-template-columns:
            1fr 2fr;
        gap: 20px;

        margin-top: 50px;
    }

    .displayIcons #iconsdisplay img,
    .webIcons #iconsdisplay img {
        width: 55px;
    }

    .signs {
        margin-top: 80px;
    }

    .sign-gallery img {
        max-height: 350px;
    }

    .book-carousel {
        margin: 100px 0;
    }

    .book-page {
        flex-basis: min(700px, 100%);
        width: min(700px, 100%);
    }

    .expo {
        margin-top: 80px;
    }

    .expo img {
        height: 240px;
    }
}


/* =========================================================
   SMALL TABLET
   769px - 900px
   ========================================================= */

@media (min-width: 769px) and (max-width: 900px) {

    article {
        width: calc(100% - 50px);
    }

    .about,
    .design,
    .labels,
    .iconography {
        gap: 25px;
    }

    .logo-stack {
        width: 220px;
    }

    .StyleGuide {
        gap: 10px;
        padding-top: 130px;
    }

    .style-preview {
        width: min(480px, calc(100vw - 30px));
    }

    .icon-row img {
        width: 55px;
    }

    .displayIcons,
    .webIcons {
        grid-template-columns:
            150px minmax(0, 1fr);
    }

    .book-page {
        flex-basis: 100%;
        width: 100%;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        margin-right: 8px;
    }

    .carousel-btn.next {
        margin-left: 8px;
    }

    .expo img {
        height: 210px;
    }
}


/* =========================================================
   MOBILE
   0px - 768px
   ========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;

        overflow-x: hidden;
    }

    body {
        padding: 0;
    }

    article {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }


    /* =====================================================
       TYPOGRAPHY
       ===================================================== */

    p,
    li {
        font-size: 11pt;
        line-height: 1.5;
    }

    h2 {
        font-size: 22pt;
        line-height: 1.15;
    }

    h3 {
        font-size: 19pt;
        line-height: 1.2;
    }

    h4 {
        font-size: 14pt;
        line-height: 1.25;
    }


    /* =====================================================
       LOGO
       ===================================================== */

    .inlineLogo {
        padding-top: 100px;
    }

    .inlineLogo img {
        width: 100%;
        max-width: 500px;
    }


    /* =====================================================
       MATERIALS
       ===================================================== */

    .materials {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .materials img {
        width: 100%;
        max-width: none;
        padding: 10px 0;
    }


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

    .about {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 60px;
        gap: 0;
    }

    .about > img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 50px auto;
    }
    .about-content {
        width: 100%;
    }
    .about-content h2 {
        margin-bottom: 20px;
    }
    .about-content p {
        margin-bottom: 18px;
    }


    /* =====================================================
       ANIMATED LOGO
       ===================================================== */

    .logo-stack {
        width: min(320px, 100%);
        margin: 0 auto 50px auto;
    }


    /* =====================================================
       DESIGN
       ===================================================== */

    .design {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 0;
        gap: 20px;
    }

    .design-content {
        width: 100%;

        margin-top: 0;
    }

    .design-content h2 {
        margin-bottom: 20px;
    }

    .design-content h3 {
        margin-top: 25px;
    }

    .design-content p {
        margin-bottom: 18px;
    }

    .color img {
        width: 100%;
        max-width: 540px;
        margin: 20px auto;
    }

    .labelmock {
        width: 100%;
        margin: 20px 0 0 0;
    }

    .labelmock img {
        width: 100%;
        max-width: 500px;
        margin: 20px auto;
    }


    /* =====================================================
       STYLE GUIDE
       ===================================================== */

    .StyleGuide {
        position: relative;
        width: 100%;
        margin-top: 80px;
        padding-top: 10px;
    }

    .style-guide-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .style-guide-content h3 {
        width: 100%;
        margin: 0 0 10px 0;
        text-align: left;
    }

    .style-guide-content > p {
        width: 100%;
        margin: 0 0 25px 0;
        text-align: left;
    }

    .style-guide-content > img {
        display: block;
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto 25px auto;
        object-fit: contain;
    }

    .style-guide-content > img:nth-of-type(1) {
        grid-column: auto;
        grid-row: auto;
        max-width: 450px;
        margin: 0 auto 25px auto;
    }


    /* Inline */

    .style-guide-content > img:nth-of-type(2) {
        grid-column: auto;
        grid-row: auto;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }

    .style-guide-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin: 0;
        order: 10;
    }

    .style-preview-btn {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        min-width: 0;
        padding: 11px 5px;
        font-size: 8pt;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }


    /* =====================================================
       STYLE GUIDE DIVIDER
       ===================================================== */

    article > .StyleGuide::before {
        top: -40px;
        left: 5%;
        width: 90%;
        height: 1px;
        opacity: 0.22;
    }


    /* =====================================================
       LABELS
       ===================================================== */

    .labels {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
        gap: 0;
    }

    .realLabel {
        width: 100%;
    }

    .realLabel img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }

    .labels-content {
        width: 100%;
    }

    .labels-content h3 {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .labels-content p {
        margin-bottom: 18px;
    }


    /* =====================================================
       LABEL BUTTONS
       ===================================================== */

    .label-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 25px;
    }

    .label-preview-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 11px 8px;
        font-size: 8pt;
    }


    /* =====================================================
       LABEL MODAL
       ===================================================== */

    .label-modal {
        padding: 15px;
    }

    .label-modal-content {
        width: 100%;
        max-width: 600px;
        max-height: 90vh;
        padding: 25px 15px 20px;
    }

    .label-modal-images {
        display: block;
        width: 100%;
    }

    .label-modal-images img {
        width: 100%;
        max-height: 500px;
        margin-bottom: 15px;
    }

    .label-modal-title {
        font-size: 17pt;
        padding-right: 30px;
    }


    /* =====================================================
       ICONOGRAPHY
       ===================================================== */

    .iconography {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
        gap: 30px;
    }

    .iconography-content {
        width: 100%;
    }

    .iconography-content h3 {
        margin-bottom: 15px;
    }

    .iconography p {
        margin-bottom: 18px;
    }

    .icon-row {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .icon-row img {
        width: 72px;
        height: auto;
        margin-right: 2px;
        margin-bottom: 5px;
    }

    #fabrication {
        width: 100%;
        margin-top: 0;
    }

    #fabrication h4 {
        margin-top: 0;
    }


    /* =====================================================
       DISPLAY / WEBSITE ICONS
       ===================================================== */

    .displayIcons,
    .webIcons {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 70px;
        gap: 0;
    }

    .display-content,
    .web-content {
        width: 100%;
    }

    .display-content h4,
    .web-content h4 {
        margin-top: 0;
    }

    .displayIcons #iconsdisplay img,
    .webIcons #iconsdisplay img {
        width: 58px;
        height: auto;
    }

    #iconsdisplay {
        width: 100%;
        margin-top: 15px;
    }


    /* =====================================================
       WEBSITE ICONS
       ===================================================== */

    .webIcons {
        margin-top: 50px;
    }


    /* =====================================================
       SIGNS
       ===================================================== */

    .signs {
        width: 100%;
        margin-top: 90px;
    }

    .signs h3 {
        margin-bottom: 20px;
    }

    .sign-gallery {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .sign-gallery img {
        display: block;
        width: 100%;
        max-width: 300px;
        max-height: none;
        padding: 0;
        margin: 0 auto;
    }


    /* =====================================================
       BOOK CAROUSEL
       ===================================================== */

    .book-carousel {
        display: block;
        width: 100%;
        margin: 90px 0 60px 0;
    }

    .bookpara h2 {
        text-align: center;
        font-size: 18pt;
        margin-bottom: 30px;
    }

    .carousel-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .carousel {
        width: 100%;
        overflow: hidden;
        padding: 10px 0 20px 0;
    }

    .carousel-track {
        gap: 15px;
        transition:
            transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .book-page {
        flex: 0 0 100%;
        width: 100%;
        aspect-ratio: 17 / 11;
        background: white;
        overflow: hidden;
        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .book-page img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* =====================================================
       CAROUSEL BUTTONS
       ===================================================== */

    .carousel-btn {
        position: absolute;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: rgba(66, 85, 99, 0.9);
        color: white;
        font-size: 18px;
        box-shadow:
            0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .carousel-btn.prev {
        left: 8px;
        margin: 0;
    }

    .carousel-btn.next {
        right: 8px;
        margin: 0;
    }


    /* =====================================================
       CAROUSEL DOTS
       ===================================================== */

    .carousel-dots {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }


    /* =====================================================
       EXPO
       ===================================================== */

    .expo {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 90px;
        gap: 10px;
    }

    .expo h2 {
        width: 100%;
        margin: 0 0 20px 0;
        text-align: left;
    }

    .expo img {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 5px;
    }


    /* =====================================================
       BACK BUTTON
       ===================================================== */

    .centerImg {
        margin-top: 70px;
        margin-bottom: 40px;
    }


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

    article > .design::before,
    article > .StyleGuide::before,
    article > .labels::before,
    article > .iconography::before,
    article > .displayIcons::before,
    article > .webIcons::before,
    article > .signs::before,
    article > .book-carousel::before,
    article > .expo::before {

        top: -40px;
        left: 5%;
        width: 90%;
        height: 1px;
        opacity: 0.22;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    article {
        margin-left: 12px;
        margin-right: 12px;
    }


    /* MATERIALS */

    .materials {
        gap: 6px;
        margin-bottom: 50px;
    }


    /* STYLE GUIDE */

    .StyleGuide {
        margin-top: 70px;
    }

    .style-guide-content > img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .style-guide-content > img:nth-of-type(1) {
        margin-bottom: 20px;
    }

    .style-guide-content > img:nth-of-type(2) {
        margin-bottom: 25px;
    }

    .style-guide-buttons {
        gap: 5px;
    }

    .style-preview-btn {
        padding: 10px 3px;
        font-size: 7pt;
        letter-spacing: 0.02em;
    }


    /* LABEL BUTTONS */

    .label-buttons {
        gap: 5px;
    }

    .label-preview-btn {
        padding: 10px 4px;
        font-size: 7pt;
    }


    /* MODAL */

    .label-modal {
        padding: 10px;
    }

    .label-modal-content {
        padding: 25px 10px 15px;
    }


    /* ICONS */

    .icon-row img {
        width: 48px;
    }

    .displayIcons #iconsdisplay img,
    .webIcons #iconsdisplay img {
        width: 40px;
    }


    /* SECTION SPACING */

    .labels {
        margin-top: 70px;
    }

    .iconography {
        margin-top: 70px;
    }

    .displayIcons,
    .webIcons {
        margin-top: 60px;
    }

    .signs {
        margin-top: 75px;
    }

    .book-carousel {
        margin-top: 75px;
    }

    .expo {
        margin-top: 75px;
    }
}