:root {
    --bg-color: #fcfcfc;
    --text-color: #1a1a1a;
    --accent-color: #d1b000;
    --border-color: #e0e0e0;
    --color-blue: #4A96A4;
    --color-coral: #D06764;
    --color-yellow: #E9C874;
    --color-teal: #539E96;
    --color-green: #7A9C78;
    --color-purple: #C98B79;
    --color-gray: #7D9392;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: -1px;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

h3 {
    font-weight: 600;
    font-size: 1.2rem;
}

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

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section .logo {
    display: inline-block;
    width: 90%;
    max-width: 860px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-section .subtitle {
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Blocks section */
.blocks-section {
    padding: 0;
    background-color: #f5f5f3;
}

.blocks-section .container {
    max-width: 100%;
    padding: 0;
    height: 100vh;
}

.blocks-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    gap: 0;
}

.blocks-row {
    display: flex;
    flex: 1;
    width: 100%;
    gap: 0;
}

.block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: rgba(0, 0, 0, 0.3);
    background-color: #fafaf8;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e0e0dc;
    border-right: 1px solid #e0e0dc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
}

.block.active-tree,
.block:hover {
    background-color: #0d0d0d;
    color: #ffffff;
    border-color: transparent;
}

.block-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.block:hover .block-details,
.block.active-tree .block-details {
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
}

.block-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 95%;
    color: inherit;
}

.block-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    align-items: center;
}

.block-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 0;
    transition: all 0.2s ease;
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.block:hover .block-link,
.block.active-tree .block-link {
    border-color: rgba(255, 255, 255, 0.4);
}

.block-link:hover {
    background: #ffffff;
    color: #0d0d0d;
    border-color: #ffffff;
}

/* block-link hover colors unified in black/white */

.block:hover {
    z-index: 10;
}

.block h2,
.block h3,
.block h4 {
    margin: 0;
    color: inherit;
    text-transform: uppercase;
}

.block h2 {
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.6rem);
    letter-spacing: -0.01em;
    text-transform: none;
}

.block h3 {
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    letter-spacing: -0.01em;
    text-transform: none;
}

.block h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.row-1 .block,
.row-2 .block,
.row-3 .block {
    flex: 1;
    min-height: 0;
    padding: 2rem;
}

.arrow-in {
    position: absolute;
    top: -4px;
    left: 10px;
    width: 35px;
    height: 30px;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-in svg {
    width: 260%;
    height: 260%;
    display: block;
    transform: rotate(180deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.arrow-in svg path {
    fill: #ccc !important;
    transition: fill 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* All blocks fully uniform — white default, black active/hovered */

/* Ancestor path blocks also go black — CSS :has() for desktop hover */
.blocks-wrapper:has(.block-coral:hover) .block-blue,
.blocks-wrapper:has(.block-yellow:hover) .block-blue,
.blocks-wrapper:has(.block-teal:hover) .block-blue,
.blocks-wrapper:has(.block-green:hover) .block-blue,
.blocks-wrapper:has(.block-purple:hover) .block-blue,
.blocks-wrapper:has(.block-gray:hover) .block-blue,
.blocks-wrapper:has(.block-teal:hover) .block-coral,
.blocks-wrapper:has(.block-green:hover) .block-coral,
.blocks-wrapper:has(.block-purple:hover) .block-yellow,
.blocks-wrapper:has(.block-gray:hover) .block-yellow {
    background-color: #0d0d0d;
    color: #ffffff;
    border-color: transparent;
}

/* Ancestor path via JS .path-active class — works on touch/mobile */
.block.path-active {
    background-color: #0d0d0d;
    color: #ffffff;
    border-color: transparent;
}

/* Arrows — show on any black tile (hovered, path-lit, or JS-active) */
.block.active-tree .arrow-in,
.block.path-active .arrow-in,
.block:hover .arrow-in {
    opacity: 1;
}

.block.active-tree .arrow-in svg path,
.block.path-active .arrow-in svg path,
.block:hover .arrow-in svg path {
    fill: rgba(255, 255, 255, 1) !important;
}

/* Desktop arrow path-lit via :has() */
.blocks-wrapper:has([class*="block-"]:hover) .block-blue .arrow-in,
.blocks-wrapper:has(.block-teal:hover) .block-coral .arrow-in,
.blocks-wrapper:has(.block-green:hover) .block-coral .arrow-in,
.blocks-wrapper:has(.block-purple:hover) .block-yellow .arrow-in,
.blocks-wrapper:has(.block-gray:hover) .block-yellow .arrow-in {
    opacity: 1;
}

.blocks-wrapper:has([class*="block-"]:hover) .block-blue .arrow-in svg path,
.blocks-wrapper:has(.block-teal:hover) .block-coral .arrow-in svg path,
.blocks-wrapper:has(.block-green:hover) .block-coral .arrow-in svg path,
.blocks-wrapper:has(.block-purple:hover) .block-yellow .arrow-in svg path,
.blocks-wrapper:has(.block-gray:hover) .block-yellow .arrow-in svg path {
    fill: rgba(255, 255, 255, 1) !important;
}

/* =============================================
   TEAM — Editorial Magazine
   ============================================= */

.team-section {
    background-color: #0d0d0d;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-start;
    padding: 0;
}

.team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.6rem 2.5rem 0;
    flex-shrink: 0;
}

.team-header-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #444;
}

.team-header-rule {
    flex: 1;
    height: 1px;
    background: #222;
    margin: 0 1.5rem 0.3rem;
}

.team-header-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #333;
}

/* Magazine grid — 4 equal columns, boss spans both rows */
.team-magazine {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 2px;
    row-gap: 2px;
    padding: 1.2rem 2.5rem 1.6rem;
}

.team-rule {
    display: none;
}

/* Cards */
.tm-card {
    position: relative;
    overflow: hidden;
    background: #161616;
    opacity: 0;
    transform: translateY(10px);
    animation: tmFadeUp 0.55s forwards;
}

@keyframes tmFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tm-card .photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: grayscale(20%) contrast(1.05) brightness(0.9);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.5s ease;
}

.tm-card:hover .photo {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.08) brightness(1);
}

/* Gradient overlay */
.tm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.25) 38%,
            rgba(0, 0, 0, 0.05) 65%,
            transparent 100%);
    z-index: 1;
}

/* Name + role */
.tm-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0.85rem 1rem 0.85rem;
}

.tm-name {
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: clamp(0.85rem, 1.3vw, 1.25rem);
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    display: block;
    transform: translateY(3px);
    transition: transform 0.35s ease;
}

.tm-card:hover .tm-name {
    transform: translateY(0);
}

.tm-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 4px;
    display: block;
    transition: color 0.35s ease;
}

.tm-card:hover .tm-role {
    color: rgba(255, 255, 255, 0.7);
}

/* Index number top-right */
.tm-index {
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    z-index: 3;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease;
}

.tm-card:hover .tm-index {
    color: rgba(255, 255, 255, 0.4);
}

/* Grid placement — 7 people, boss spans both rows */
.tm-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    animation-delay: 0.05s;
}

/* boss — full height */
.tm-2 {
    grid-column: 2;
    grid-row: 1;
    animation-delay: 0.10s;
}

.tm-3 {
    grid-column: 3;
    grid-row: 1;
    animation-delay: 0.15s;
}

.tm-4 {
    grid-column: 4;
    grid-row: 1;
    animation-delay: 0.20s;
}

.tm-5 {
    grid-column: 2;
    grid-row: 2;
    animation-delay: 0.25s;
}

.tm-6 {
    grid-column: 3;
    grid-row: 2;
    animation-delay: 0.30s;
}

.tm-7 {
    grid-column: 4;
    grid-row: 2;
    animation-delay: 0.35s;
}

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

.contact-section {
    background-color: #fafaf8;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-start;
    padding: 0;
}

.contact-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.6rem 2.5rem 0;
    flex-shrink: 0;
}

.contact-header-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #aaa;
}

.contact-header-rule {
    flex: 1;
    height: 1px;
    background: #e0e0dc;
    margin: 0 1.5rem 0.3rem;
}

.contact-header-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #bbb;
}

.contact-body {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 4rem;
    gap: 3rem;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-firm {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0d0d0d;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.contact-address p {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1.05rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.contact-address p.contact-spacer {
    margin-top: 0.8rem;
}

.contact-address a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-address a:hover {
    color: #0d0d0d;
    border-color: #0d0d0d;
}

.contact-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.55rem 1rem;
    transition: all 0.2s ease;
}

.social-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.social-link:hover {
    background: #0d0d0d;
    color: #fff;
    border-color: #0d0d0d;
}

.contact-memberships {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-memberships img {
    height: 96px;
    width: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.member-link {
    display: inline-flex;
    text-decoration: none;
}

.member-link:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.contact-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.legal-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .contact-memberships img {
        height: 72px;
    }

    .team-magazine {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        overflow-y: auto;
    }

    /* Row 1: 2 cards — Kim wide (2 cols), Jan narrow */
    .tm-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .tm-1 .photo {
        background-position: center 5%;
    }

    .tm-2 {
        grid-column: 3;
        grid-row: 1;
    }

    /* Row 2: 3 cards */
    .tm-3 {
        grid-column: 1;
        grid-row: 2;
    }

    .tm-4 {
        grid-column: 2;
        grid-row: 2;
    }

    .tm-5 {
        grid-column: 3;
        grid-row: 2;
    }

    /* Row 3: 3 cards — last one spans to fill */
    .tm-6 {
        grid-column: 1;
        grid-row: 3;
    }

    .tm-7 {
        grid-column: 2 /4;
        grid-row: 3;
    }
}

/* =============================================
   MOBILE TREE NAVIGATOR
   ============================================= */

@media (max-width: 600px) {
    .contact-memberships {
        gap: 1rem;
    }

    .contact-memberships img {
        height: 52px;
    }
}

/* Hide desktop layout on mobile — replaced by JS-rendered navigator */
@media (max-width: 768px) {
    .blocks-section .container {
        display: none;
    }

    .blocks-section {
        min-height: 100vh;
        overflow: hidden;
    }
}

/* Navigator shell — appended to blocks-section by JS */
.blocks-mobile-nav {
    display: none;
    /* shown only on mobile via JS + media query */
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .blocks-mobile-nav {
        display: flex;
    }
}

/* Parent panel — active/focused block, dark, top 62% */
.bmn-parent {
    flex: 0 0 62%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #0d0d0d;
    color: #fff;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bmn-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.35);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.bmn-back-btn:active {
    color: rgba(255, 255, 255, 0.7);
}

.bmn-parent-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem 1rem;
    overflow: hidden;
}

.bmn-parent h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.9rem;
    line-height: 1.1;
}

.bmn-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.bmn-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

/* Flow arrow hint at bottom of parent panel */
.bmn-flow-hint {
    flex-shrink: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.18;
}

.bmn-flow-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #fff;
}

/* Children panel — two clickable blocks, bottom 38% */
.bmn-children {
    flex: 0 0 38%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    background: #fafaf8;
    transition: opacity 0.25s ease;
}

.bmn-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    cursor: pointer;
    padding: 1rem 0.8rem;
    text-align: center;
    overflow: hidden;
    background: #fafaf8;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}

.bmn-child:active {
    background: #ebebea;
}

.bmn-child+.bmn-child {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* Arrow (always visible, pointing up toward parent) */
.bmn-child-arrow {
    position: absolute;
    top: -4px;
    left: 8px;
    width: 28px;
    height: 24px;
    pointer-events: none;
}

.bmn-child-arrow svg {
    width: 240%;
    height: 240%;
    display: block;
    transform: rotate(180deg);
}

.bmn-child-arrow svg path {
    fill: rgba(0, 0, 0, 1);
}

.bmn-child-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(0.78rem, 3.5vw, 1rem);
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: block;
}

/* ↓ indicator on children that have further children */
.bmn-child-has-children {
    display: block;
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 0.4rem;
    letter-spacing: 1px;
}

/* Leaf node placeholder */
.bmn-leaf {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0ee;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.2);
}