/* GLOBAL VARIABLES, RESET, TYPOGRAPHY, AND SHARED UTILITIES */

:root {
    --cream: #fff8e7;
    --paper: #fffdf7;
    --ink: #242238;
    --purple: #7357ff;
    --purple-dark: #4d36cf;
    --yellow: #ffd93d;
    --blue: #65d6ff;
    --pink: #ff6b8a;
    --mint: #55e6a5;
    --orange: #ff9f43;
    --border: 3px solid var(--ink);
    --shadow: 7px 7px 0 var(--ink);
    --shadow-small: 4px 4px 0 var(--ink);
    --container: 1220px;
    --radius-xl: 34px;
    --radius-lg: 25px;
    --radius-md: 18px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body,
a,
button {
    cursor: none;
}

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

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

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

.portfolio-shell {
    padding-left: 104px;
}

.content-container {
    width: min(calc(100% - 80px), var(--container));
    margin-inline: auto;
}

.section-observer {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(38px) rotate(0.5deg);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 9px;
    height: 9px;
    background: var(--ink);
}

.cursor-ring {
    width: 35px;
    height: 35px;
    border: 2px solid var(--ink);
    background: rgba(255, 217, 61, 0.38);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

body.cursor-hover .cursor-ring {
    width: 55px;
    height: 55px;
    background: rgba(101, 214, 255, 0.42);
}

/* Hero */
.hero-section {
    min-height: 100vh;
    padding: 72px 0 60px;
    overflow: hidden;
    background: var(--cream);
    isolation: isolate;
}

.hero-grid-bg {
    position: absolute;
    z-index: -4;
    inset: 0;
    background-image: linear-gradient(rgba(36, 34, 56, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 34, 56, 0.055) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
}

.hero-blob {
    position: absolute;
    z-index: -3;
    border: var(--border);
    filter: saturate(110%);
}

.blob-purple {
    top: -155px;
    right: -120px;
    width: 550px;
    height: 430px;
    transform: rotate(14deg);
    border-radius: 43% 57% 38% 62% / 54% 39% 61% 46%;
    background: var(--purple);
}

.blob-blue {
    bottom: 45px;
    left: 32%;
    width: 180px;
    height: 150px;
    transform: rotate(-12deg);
    border-radius: 63% 37% 49% 51% / 34% 60% 40% 66%;
    background: var(--blue);
}

.hero-content {
    display: grid;
    min-height: 650px;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.availability-pill {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 9px 15px;
    align-items: center;
    gap: 9px;
    transform: rotate(-1deg);
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: white;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.availability-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--mint);
    animation: blink-dot 1.6s ease-in-out infinite;
}

.handwritten-note {
    margin: 0 0 2px;
    transform: rotate(-2deg);
    color: var(--purple-dark);
    font-family: "Caveat", cursive;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Bowlby One", "Arial Black", sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.name-line,
.role-line {
    display: block;
}

.name-line {
    font-size: clamp(72px, 9vw, 132px);
    color: var(--ink);
    text-shadow: 5px 5px 0 var(--yellow);
}

.role-line {
    margin-top: 9px;
    font-size: clamp(36px, 5.3vw, 75px);
}

.role-line em {
    position: relative;
    display: inline-block;
    color: var(--purple);
    font-style: normal;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 4px 4px 0 var(--ink);
}

.role-line em::after {
    position: absolute;
    right: 4px;
    bottom: -18px;
    left: 4px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12c35-8 63 4 97-1s62-6 97 0' fill='none' stroke='%23ff6b8a' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    content: "";
}

.hero-bio {
    max-width: 650px;
    margin: 35px 0 27px;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 500;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-button,
.project-link,
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: var(--border);
    box-shadow: var(--shadow-small);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    padding: 16px 21px;
    transform: rotate(-1deg);
    border-radius: 14px;
    background: var(--yellow);
}

.primary-button svg,
.project-link svg,
.contact-button svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.primary-button:hover,
.project-link:hover,
.contact-button:hover {
    transform: translate(-2px, -2px) rotate(1deg);
    box-shadow: 8px 8px 0 var(--ink);
}

.text-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.text-button::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 3px;
    transform: scaleX(0.3);
    transform-origin: left;
    background: var(--pink);
    content: "";
    transition: transform 0.25s ease;
}

.text-button:hover::after {
    transform: scaleX(1);
}

.hero-stats {
    display: flex;
    margin-top: 48px;
    gap: 14px;
}

.stat-card {
    display: flex;
    min-width: 118px;
    padding: 13px 16px;
    align-items: center;
    gap: 9px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: 3px 3px 0 var(--ink);
}

.stat-card:nth-child(1) { transform: rotate(-2deg); }

.stat-card:nth-child(2) { transform: rotate(1.5deg); }

.stat-card:nth-child(3) { transform: rotate(-1deg); }

.stat-yellow { background: var(--yellow); }

.stat-pink { background: var(--pink); }

.stat-mint { background: var(--mint); }

.stat-card strong {
    font-family: "Bowlby One", sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.stat-card span {
    max-width: 64px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.mini-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2.5px solid var(--ink);
    box-shadow: var(--shadow-small);
}

.mini-location {
    bottom: 54px;
    left: -20px;
    padding: 12px 16px;
    transform: rotate(-5deg);
    border-radius: 14px;
    background: var(--blue);
}

.mini-location > span {
    font-size: 26px;
}

.mini-location div {
    display: flex;
    flex-direction: column;
}

.mini-location small {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-location strong {
    font-size: 13px;
}

.mini-idea {
    top: 150px;
    right: -15px;
    padding: 13px 15px;
    transform: rotate(7deg);
    border-radius: 50% 42% 47% 44%;
    background: var(--pink);
    font-size: 11px;
    text-transform: uppercase;
}

.mini-idea > span {
    font-size: 26px;
}

.doodle-arrow {
    position: absolute;
    z-index: 6;
    right: -30px;
    bottom: 25px;
    width: 125px;
    transform: rotate(4deg);
    fill: none;
    stroke: var(--purple-dark);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-sticker {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    border: 2.5px solid var(--ink);
    box-shadow: var(--shadow-small);
    font-weight: 800;
    user-select: none;
}

.sticker-star {
    top: 92px;
    left: 8%;
    width: 65px;
    aspect-ratio: 1;
    transform: rotate(-12deg);
    background: var(--yellow);
    clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 57%, 79% 94%, 50% 72%, 20% 94%, 31% 57%, 2% 35%, 38% 34%);
    font-size: 24px;
    animation: spin-slow 9s linear infinite;
}

.sticker-code {
    right: 8%;
    bottom: 120px;
    padding: 10px 13px;
    transform: rotate(8deg);
    border-radius: 12px;
    background: var(--mint);
    font-family: monospace;
    font-size: 20px;
    animation: float-y 4s ease-in-out infinite;
}

.sticker-smile {
    top: 95px;
    right: 31%;
    width: 62px;
    aspect-ratio: 1;
    transform: rotate(11deg);
    border-radius: 50%;
    background: var(--pink);
    font-size: 20px;
    animation: wiggle 3s ease-in-out infinite;
}

.sticker-spark {
    top: 42%;
    left: 49%;
    width: 46px;
    aspect-ratio: 1;
    transform: rotate(20deg);
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--orange);
    font-size: 44px;
    animation: sparkle 2s ease-in-out infinite;
}

.sticker-pencil {
    right: 46%;
    bottom: 42px;
    width: 56px;
    aspect-ratio: 1;
    transform: rotate(-13deg);
    border-radius: 16px;
    background: white;
    font-size: 29px;
    animation: float-y 5s ease-in-out infinite reverse;
}

.about-strip {
    position: relative;
    z-index: 7;
    display: grid;
    margin-top: 18px;
    padding: 27px 31px;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 28px;
    transform: rotate(-0.6deg);
    border: var(--border);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.about-label {
    position: relative;
    font-family: "Bowlby One", sans-serif;
    font-size: 19px;
}

.about-label svg {
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 95px;
    fill: none;
    stroke: var(--pink);
    stroke-width: 5;
    stroke-linecap: round;
}

.about-strip > p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.75;
}

.skill-cloud {
    display: flex;
    max-width: 310px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.skill-cloud span,
.tech-list span {
    padding: 7px 10px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 800;
}

.skill-cloud span:nth-child(2n) { background: var(--blue); }

.skill-cloud span:nth-child(3n) { background: var(--pink); }

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

.section-kicker {
    display: flex;
    margin: 0 0 12px;
    align-items: center;
    gap: 11px;
    font-family: "Caveat", cursive;
    font-size: 25px;
    font-weight: 700;
}

.section-kicker span {
    display: grid;
    width: 40px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(-7deg);
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(44px, 6.3vw, 88px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.light-heading h2 span {
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 4px 4px 0 var(--ink);
}

.section-heading > p {
    max-width: 410px;
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.project-visual-wrap {
    position: relative;
    min-width: 0;
    padding: 12px;
    transform: translateZ(28px) rotate(-1.5deg);
    border: var(--border);
    border-radius: 23px;
    background: var(--project-accent);
}

.is-reverse .project-visual-wrap {
    transform: translateZ(28px) rotate(1.5deg);
}

.browser-frame {
    overflow: hidden;
    border: 2.5px solid var(--ink);
    border-radius: 14px;
    background: white;
    box-shadow: 6px 6px 0 rgba(36, 34, 56, 0.65);
}

.browser-bar {
    display: flex;
    height: 40px;
    padding: 0 13px;
    align-items: center;
    gap: 7px;
    border-bottom: 2px solid var(--ink);
    background: #f5f2ea;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
}

.dot-red { background: var(--pink); }

.dot-yellow { background: var(--yellow); }

.dot-green { background: var(--mint); }

.browser-address {
    margin-left: 7px;
    padding: 5px 13px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    background: white;
    font-family: monospace;
    font-size: 9px;
    opacity: 0.8;
}

.browser-frame img {
    width: 100%;
    aspect-ratio: 1.48;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
    object-fit: cover;
}

.tape-one {
    top: -16px;
    left: 12%;
    transform: rotate(-8deg);
}

.tape-two {
    right: 8%;
    bottom: -11px;
    transform: rotate(6deg);
    background: rgba(85, 230, 165, 0.77);
}

.project-pop-sticker {
    position: absolute;
    right: -39px;
    bottom: -48px;
    display: grid;
    width: 86px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(10deg);
    border: 2.5px solid var(--ink);
    border-radius: 50%;
    background: var(--pink);
    box-shadow: var(--shadow-small);
    font-family: "Bowlby One", sans-serif;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.project-pop-sticker svg {
    position: absolute;
    right: 50px;
    bottom: -7px;
    width: 60px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-copy {
    transform: translateZ(42px);
}

.project-meta {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
}

.project-number {
    display: grid;
    width: 64px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(-6deg);
    border: var(--border);
    border-radius: 50%;
    background: var(--project-accent);
    box-shadow: var(--shadow-small);
    font-family: "Bowlby One", sans-serif;
    font-size: 20px;
}

.project-year {
    padding: 7px 10px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: white;
    font-family: monospace;
    font-size: 12px;
    font-weight: 800;
}

.eyebrow {
    margin: 0 0 7px;
    color: var(--purple-dark);
    font-family: "Caveat", cursive;
    font-size: 22px;
    font-weight: 700;
}

.project-copy h3 {
    margin: 0 0 18px;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(31px, 3.8vw, 51px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.project-description {
    margin: 0 0 24px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}

.tech-list {
    display: flex;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 7px;
}

.tech-list span {
    background: color-mix(in srgb, var(--project-accent) 45%, white);
}

.project-link {
    padding: 13px 17px;
    border-radius: 13px;
    background: var(--ink);
    color: white;
    box-shadow: 5px 5px 0 var(--project-accent);
    font-size: 13px;
}

.project-scribble {
    position: absolute;
    z-index: -1;
    border: 5px solid rgba(255, 217, 61, 0.5);
    border-radius: 50%;
}

.scribble-one {
    top: 220px;
    right: -100px;
    width: 350px;
    height: 190px;
    transform: rotate(-25deg);
}

.scribble-two {
    bottom: 80px;
    left: -120px;
    width: 340px;
    height: 230px;
    transform: rotate(18deg);
}

.edge-sticker {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: var(--border);
    color: var(--ink);
    box-shadow: var(--shadow-small);
    font-family: "Bowlby One", sans-serif;
    text-align: center;
}

.edge-sticker-left {
    top: 52%;
    left: 16px;
    width: 82px;
    height: 66px;
    transform: rotate(-88deg);
    border-radius: 14px;
    background: var(--mint);
    font-size: 12px;
}

.edge-sticker-right {
    right: 16px;
    bottom: 12%;
    width: 105px;
    height: 48px;
    transform: rotate(80deg);
    border-radius: 999px;
    background: var(--yellow);
    font-size: 12px;
}

.trophy-doodle {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(6deg);
    font-size: 55px;
}

.trophy-doodle small {
    max-width: 60px;
    font-family: "Caveat", cursive;
    font-size: 20px;
    font-weight: 700;
    line-height: 0.9;
}

.timeline-path {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: var(--ink);
    stroke-width: 4;
    stroke-dasharray: 10 10;
    stroke-linecap: round;
}

.confetti-layer {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
}

.confetti-layer i {
    position: absolute;
    width: 14px;
    height: 35px;
    transform: rotate(22deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
}

.confetti-layer i:nth-child(1) { top: 8%; left: 8%; }

.confetti-layer i:nth-child(2) { top: 16%; left: 42%; width: 28px; height: 13px; background: var(--pink); }

.confetti-layer i:nth-child(3) { top: 35%; right: 8%; background: var(--mint); }

.confetti-layer i:nth-child(4) { bottom: 15%; left: 5%; width: 23px; height: 23px; border-radius: 50%; background: var(--purple); }

.confetti-layer i:nth-child(5) { right: 30%; bottom: 9%; transform: rotate(-35deg); background: var(--orange); }

.confetti-layer i:nth-child(6) { top: 50%; left: 30%; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); }

.confetti-layer i:nth-child(7) { top: 9%; right: 26%; transform: rotate(62deg); background: var(--mint); }

.confetti-layer i:nth-child(8) { right: 4%; bottom: 38%; width: 20px; height: 10px; background: var(--pink); }

/* Contact */
.contact-section {
    position: relative;
    padding: 120px 0 42px;
    overflow: hidden;
    background: var(--pink);
    isolation: isolate;
}

.contact-section::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: linear-gradient(rgba(36, 34, 56, 0.065) 2px, transparent 2px), linear-gradient(90deg, rgba(36, 34, 56, 0.065) 2px, transparent 2px);
    background-size: 48px 48px;
    content: "";
}

.contact-sun {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 780px;
    aspect-ratio: 1;
    transform: translate(-50%, -48%);
    border: var(--border);
    background: var(--yellow);
    clip-path: polygon(50% 0%, 58% 27%, 75% 7%, 74% 33%, 97% 21%, 80% 43%, 100% 50%, 80% 57%, 97% 79%, 74% 67%, 75% 93%, 58% 73%, 50% 100%, 42% 73%, 25% 93%, 26% 67%, 3% 79%, 20% 57%, 0% 50%, 20% 43%, 3% 21%, 26% 33%, 25% 7%, 42% 27%);
}

.contact-inner {
    text-align: center;
}

.contact-inner .handwritten-note {
    margin-bottom: 9px;
    color: var(--purple-dark);
}

.contact-inner h2 {
    margin: 0;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(51px, 8vw, 112px);
    font-weight: 400;
    line-height: 0.91;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.contact-inner h2 span {
    color: var(--purple);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 5px 5px 0 var(--ink);
}

.contact-inner > p:not(.handwritten-note) {
    max-width: 590px;
    margin: 35px auto 26px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
}

.contact-button {
    padding: 17px 22px;
    transform: rotate(-1deg);
    border-radius: 15px;
    background: white;
}

.social-row {
    display: flex;
    margin-top: 25px;
    justify-content: center;
    gap: 22px;
}

.social-row a {
    border-bottom: 2px solid var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    margin-top: 95px;
    padding-top: 20px;
    justify-content: space-between;
    gap: 20px;
    border-top: 2px solid var(--ink);
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
}

/* Motion */
@keyframes blink-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.6); opacity: 0.55; }
}

@keyframes float-y {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -13px; }
}

@keyframes wiggle {
    0%, 100% { rotate: -3deg; translate: 0 0; }
    50% { rotate: 5deg; translate: 0 -7px; }
}

@keyframes spin-slow {
    from { rotate: 0deg; }
    to { rotate: 360deg; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(0.8) rotate(0); opacity: 0.45; }
    50% { transform: scale(1.18) rotate(20deg); opacity: 1; }
}

.creative-project-stage {
    --stage-shift: -1;
    --stage-enter-x: -54px;
    --stage-enter-rotate: 3deg;
    position: relative;
    min-height: 660px;
    padding: 38px clamp(24px, 4.6vw, 56px) 55px;
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 30px;
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.72) 0 3px, transparent 4px),
        linear-gradient(135deg, color-mix(in srgb, var(--project-accent) 68%, white) 0 33%, #fff8df 33% 68%, color-mix(in srgb, var(--project-accent) 26%, #fff8df) 68% 100%);
    background-size: 28px 28px, auto;
    color: var(--ink);
    box-shadow: 9px 10px 0 var(--ink);
    isolation: isolate;
}

.creative-project-stage:nth-child(2n) {
    --stage-shift: 1;
    --stage-enter-x: 54px;
    --stage-enter-rotate: -3deg;
    background:
        radial-gradient(circle at 21% 78%, rgba(255, 255, 255, 0.66) 0 3px, transparent 4px),
        linear-gradient(225deg, color-mix(in srgb, var(--project-accent) 68%, white) 0 33%, #fff8df 33% 68%, color-mix(in srgb, var(--project-accent) 26%, #fff8df) 68% 100%);
    background-size: 28px 28px, auto;
}

.creative-project-stage::before {
    position: absolute;
    z-index: -1;
    top: -58px;
    left: -58px;
    width: 205px;
    aspect-ratio: 1;
    transform: rotate(16deg);
    border: 3px solid var(--ink);
    border-radius: 42% 58% 61% 39%;
    background: var(--yellow);
    content: "";
    opacity: 0.95;
}

.creative-project-stage:nth-child(2n)::before {
    right: -58px;
    left: auto;
    transform: rotate(-18deg);
    background: var(--blue);
}

.creative-project-stage::after {
    position: absolute;
    z-index: -1;
    right: 8%;
    bottom: 20%;
    width: 150px;
    height: 86px;
    transform: rotate(-7deg);
    border: 3px dashed color-mix(in srgb, var(--project-accent) 58%, var(--ink));
    border-radius: 50%;
    content: "";
    opacity: 0.42;
}

.creative-project-stage:nth-child(2n)::after {
    right: auto;
    left: 8%;
    transform: rotate(7deg);
}

.project-stage-watermark {
    position: absolute;
    z-index: -1;
    top: 44px;
    right: -5px;
    color: var(--ink);
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(76px, 10.6vw, 145px);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.065em;
    opacity: 0.075;
    white-space: nowrap;
}

.creative-project-stage:nth-child(2n) .project-stage-watermark {
    right: auto;
    left: -5px;
}

.project-stage-meta {
    position: relative;
    z-index: 4;
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.project-stage-meta span,
.project-stage-meta time {
    display: inline-flex;
    min-height: 29px;
    padding: 6px 10px;
    align-items: center;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 3px 3px 0 var(--ink);
}

.project-stage-meta time {
    transform: rotate(2deg);
    background: var(--project-accent);
}

.project-stage-visual {
    position: relative;
    z-index: 2;
    width: min(58%, 560px);
    margin-left: 5%;
    transform: rotate(-1.5deg);
    transition: transform 0.45s cubic-bezier(0.2, 0.82, 0.25, 1), filter 0.35s ease;
}

.creative-project-stage:nth-child(2n) .project-stage-visual {
    margin-right: 5%;
    margin-left: auto;
    transform: rotate(1.5deg);
}

.creative-project-stage:hover .project-stage-visual {
    transform: translateY(-8px) rotate(-0.4deg);
    filter: saturate(1.08);
}

.creative-project-stage:nth-child(2n):hover .project-stage-visual {
    transform: translateY(-8px) rotate(0.4deg);
}

.stage-image-frame {
    position: relative;
    margin: 0;
    padding: 10px 10px 31px;
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 9px 10px 0 var(--ink);
}

.stage-image-frame::before {
    position: absolute;
    z-index: 3;
    inset: 10px 10px 31px;
    border: 2px solid rgba(36, 34, 56, 0.7);
    border-radius: 9px;
    content: "";
    pointer-events: none;
}

.stage-image-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 9px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.creative-project-stage:hover .stage-image-frame img {
    transform: scale(1.035);
}

.stage-image-frame figcaption {
    position: absolute;
    right: 15px;
    bottom: 8px;
    left: 15px;
    overflow: hidden;
    font-family: monospace;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.stage-image-shine {
    position: absolute;
    z-index: 2;
    top: 10px;
    bottom: 31px;
    left: -55%;
    width: 34%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
    transition: left 0.85s ease;
    pointer-events: none;
}

.creative-project-stage:hover .stage-image-shine {
    left: 122%;
}

.stage-visual-tape {
    position: absolute;
    z-index: 6;
    top: -13px;
    left: 50%;
    width: 105px;
    height: 27px;
    transform: translateX(-50%) rotate(2deg);
    border: 1px solid rgba(36, 34, 56, 0.34);
    background: rgba(255, 217, 61, 0.86);
}

.creative-project-stage:nth-child(2n) .stage-visual-tape {
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(255, 107, 138, 0.82);
}

.stage-number-badge {
    position: absolute;
    z-index: 7;
    top: 24px;
    right: -31px;
    display: grid;
    width: 69px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(8deg);
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: "Bowlby One", sans-serif;
    font-size: 21px;
    font-weight: 400;
}

.creative-project-stage:nth-child(2n) .stage-number-badge {
    right: auto;
    left: -31px;
    transform: rotate(-8deg);
}

.stage-side-caption {
    position: absolute;
    top: 50%;
    right: -128px;
    padding: 7px 10px;
    transform: translateY(-50%) rotate(90deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: monospace;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.creative-project-stage:nth-child(2n) .stage-side-caption {
    right: auto;
    left: -127px;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--mint);
}

.project-stage-info {
    position: relative;
    z-index: 5;
    width: min(68%, 670px);
    min-height: 272px;
    margin: -38px 5% 0 auto;
    padding: 31px 34px 29px;
    transform: rotate(0.7deg);
    border: 3px solid var(--ink);
    border-radius: 20px;
    background:
        repeating-linear-gradient(to bottom, transparent 0 30px, rgba(101, 214, 255, 0.2) 31px),
        var(--paper);
    box-shadow: 8px 9px 0 var(--ink);
}

.creative-project-stage:nth-child(2n) .project-stage-info {
    margin-right: auto;
    margin-left: 5%;
    transform: rotate(-0.7deg);
}

.stage-info-screw {
    position: absolute;
    top: 11px;
    width: 9px;
    aspect-ratio: 1;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
}

.stage-info-screw.screw-left { left: 12px; }

.stage-info-screw.screw-right { right: 12px; }

.stage-info-kicker {
    display: inline-flex;
    margin: 0 0 10px;
    align-items: center;
    gap: 7px;
    color: var(--purple-dark);
    font-family: "Caveat", cursive;
    font-size: 19px;
    font-weight: 700;
}

.stage-info-kicker span {
    color: var(--pink);
    font-family: inherit;
}

.project-stage-info h3 {
    max-width: 82%;
    margin: 0 0 12px;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(30px, 4vw, 49px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.stage-project-description {
    max-width: 78%;
    margin: 0 0 19px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.75;
}

.stage-tech-list {
    display: flex;
    max-width: 78%;
    margin-bottom: 23px;
    flex-wrap: wrap;
    gap: 8px;
}

.stage-tech-list span {
    padding: 7px 10px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: color-mix(in srgb, var(--project-accent) 56%, white);
    box-shadow: 0 3px 0 var(--ink);
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.stage-project-link {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 14px 10px 17px;
    align-items: center;
    gap: 15px;
    border: 2.5px solid var(--ink);
    border-radius: 11px;
    background: var(--ink);
    color: white;
    box-shadow: 4px 4px 0 var(--project-accent);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.stage-project-link:hover {
    transform: translateY(-3px) rotate(-1deg);
    background: var(--project-accent);
    color: var(--ink);
}

.stage-project-link svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.22s ease;
}

.stage-project-link:hover svg {
    transform: translateX(4px);
}

.stage-info-stamp {
    position: absolute;
    right: 25px;
    bottom: 27px;
    display: grid;
    width: 68px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(-11deg);
    border: 2px solid var(--purple-dark);
    border-radius: 50%;
    color: var(--purple-dark);
    font-family: monospace;
    font-size: 6px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.stage-info-stamp::before {
    position: absolute;
    inset: 5px;
    border: 1px dashed currentColor;
    border-radius: inherit;
    content: "";
}

.project-stage-doodle {
    position: absolute;
    z-index: 3;
    right: 6%;
    bottom: 15%;
    display: flex;
    transform: rotate(-12deg);
    align-items: center;
    gap: 6px;
}

.creative-project-stage:nth-child(2n) .project-stage-doodle {
    right: auto;
    left: 6%;
    transform: rotate(12deg);
}

.project-stage-doodle i {
    display: block;
    width: 31px;
    height: 7px;
    border-radius: 999px;
    background: var(--ink);
}

.project-stage-doodle i:nth-child(2) {
    width: 18px;
    background: var(--pink);
}

.project-stage-doodle i:nth-child(3) {
    width: 8px;
    aspect-ratio: 1;
    height: auto;
    background: var(--purple);
}

@keyframes creative-image-reveal {
    0% { clip-path: inset(0 100% 0 0 round 9px); transform: scale(1.06); filter: saturate(0.4); }
    100% { clip-path: inset(0 round 9px); transform: scale(1); filter: saturate(1); }
}

@keyframes creative-info-reveal {
    0% { translate: var(--stage-enter-x) 26px; rotate: var(--stage-enter-rotate); opacity: 0; }
    100% { translate: 0 0; rotate: 0deg; opacity: 1; }
}

@keyframes creative-tag-pop {
    0% { transform: translateY(9px) scale(0.74) rotate(-4deg); opacity: 0; }
    70% { transform: translateY(-2px) scale(1.05) rotate(1deg); opacity: 1; }
    100% { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
}

@keyframes creative-sticker-float {
    0%, 100% { translate: 0 0; rotate: 0deg; }
    50% { translate: 0 -9px; rotate: 4deg; }
}

/* =========================================================
   CREATIVE PROJECT PINBOARD
   ========================================================= */

.projects-pinboard {
    position: relative;
    display: grid;
    min-height: 810px;
    padding: 100px 58px 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(35px, 5vw, 68px);
    border: var(--border);
    border-radius: 28px;
    background:
        radial-gradient(rgba(94, 54, 30, 0.17) 1.4px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1.8px),
        #c98b57;
    background-position: 0 0, 9px 12px, 0 0;
    background-size: 19px 19px, 23px 23px, auto;
    box-shadow: 14px 14px 0 var(--ink), inset 0 0 0 9px rgba(255, 255, 255, 0.13);
    isolation: isolate;
}

.projects-pinboard::before {
    position: absolute;
    z-index: -1;
    inset: 17px;
    border: 2px dashed rgba(36, 34, 56, 0.36);
    border-radius: 17px;
    content: "";
    pointer-events: none;
}

.project-board-label {
    position: absolute;
    z-index: 7;
    top: 25px;
    left: 50%;
    padding: 9px 15px;
    transform: translateX(-50%) rotate(-1deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.project-board-screw {
    position: absolute;
    z-index: 8;
    width: 18px;
    aspect-ratio: 1;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #dbe2e8;
    box-shadow: inset 3px 3px 0 white;
}

.project-board-screw::after {
    position: absolute;
    top: 6px;
    left: 2px;
    width: 11px;
    border-top: 2px solid var(--ink);
    transform: rotate(-15deg);
    content: "";
}

.project-screw-one { top: 25px; left: 24px; }

.project-screw-two { top: 25px; right: 24px; }

.project-screw-three { bottom: 25px; left: 24px; }

.project-screw-four { right: 24px; bottom: 25px; }

.project-board-thread {
    position: absolute;
    z-index: 0;
    top: 66px;
    left: 42px;
    width: calc(100% - 84px);
    height: calc(100% - 115px);
    overflow: visible;
    fill: none;
    filter: drop-shadow(2px 2px 0 rgba(36, 34, 56, 0.25));
    stroke: var(--ink);
    stroke-width: 4;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.25s 0.12s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.projects-pinboard.is-active .project-board-thread {
    stroke-dashoffset: 0;
}

.project-board-note {
    position: absolute;
    z-index: 6;
    display: grid;
    place-items: center;
    border: 2.5px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-family: "Bowlby One", sans-serif;
    line-height: 1.05;
    text-align: center;
}

.project-board-note::before {
    position: absolute;
    top: -11px;
    left: 50%;
    width: 45px;
    height: 18px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(255, 244, 183, 0.72);
    content: "";
}

.project-board-note small {
    margin-top: 6px;
    font-family: "Caveat", cursive;
    font-size: 16px;
    font-weight: 700;
}

.note-build {
    bottom: 23px;
    left: 41%;
    width: 145px;
    min-height: 76px;
    transform: translateX(-50%) rotate(-5deg);
    background: var(--yellow);
    font-size: 11px;
}

.note-favorite {
    top: 32%;
    right: -26px;
    width: 104px;
    min-height: 72px;
    transform: rotate(8deg);
    background: var(--pink);
    font-size: 10px;
}

.project-thumbtack {
    position: absolute;
    z-index: 9;
    top: 15px;
    left: 50%;
    width: 29px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
    box-shadow: 3px 4px 0 rgba(36, 34, 56, 0.62), inset 6px 6px 0 rgba(255, 255, 255, 0.4);
}

.project-thumbtack i {
    position: absolute;
    top: 26px;
    left: 12px;
    height: 13px;
    border-left: 3px solid var(--ink);
}

.projects-pinboard.is-active .project-thumbtack {
    animation: project-thumbtack-pop 0.38s calc(0.66s + var(--project-index) * 0.17s) cubic-bezier(0.18, 0.89, 0.27, 1.35) both;
}

.project-tape {
    position: absolute;
    z-index: 7;
    width: 74px;
    height: 23px;
    border: 1px solid rgba(36, 34, 56, 0.16);
    background: color-mix(in srgb, var(--project-accent) 52%, rgba(255, 255, 255, 0.72));
    opacity: 0.83;
}

.project-tape-left {
    top: 49px;
    left: -18px;
    transform: rotate(-38deg);
}

.project-tape-right {
    right: -18px;
    bottom: 52px;
    transform: rotate(-35deg);
}

.project-pin-sheet {
    position: relative;
    min-height: 590px;
    padding: 25px 25px 31px;
    transform: rotate(-1.7deg);
    border: var(--border);
    background:
        linear-gradient(rgba(115, 87, 255, 0.055) 1px, transparent 1px),
        var(--paper);
    background-size: 100% 29px;
    box-shadow: 9px 10px 0 rgba(36, 34, 56, 0.84);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.project-sheet-topline {
    display: flex;
    margin-bottom: 17px;
    padding-bottom: 11px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 2px dashed rgba(36, 34, 56, 0.35);
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.project-sheet-topline time {
    padding: 5px 8px;
    border: 1.5px solid var(--ink);
    background: var(--project-accent);
}

.project-preview-paper {
    position: relative;
    margin: 0 0 26px;
    padding: 10px 10px 28px;
    transform: rotate(-0.8deg);
    border: 2.5px solid var(--ink);
    background: white;
    box-shadow: 6px 6px 0 var(--project-accent);
}

.project-browser-bar {
    display: flex;
    height: 35px;
    padding: 0 10px;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--ink);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #f1eee6;
}

.project-browser-bar > span {
    width: 9px;
    aspect-ratio: 1;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
}

.project-browser-bar > span:nth-child(1) { background: var(--pink); }

.project-browser-bar > span:nth-child(2) { background: var(--yellow); }

.project-browser-bar > span:nth-child(3) { background: var(--mint); }

.project-browser-bar small {
    max-width: 66%;
    margin-left: 6px;
    overflow: hidden;
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-preview-window {
    overflow: hidden;
    border: 2px solid var(--ink);
}

.project-preview-window img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-preview-paper figcaption {
    position: absolute;
    right: 12px;
    bottom: 7px;
    max-width: 80%;
    overflow: hidden;
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-pin-copy {
    position: relative;
}

.project-pin-eyebrow {
    margin: 0 0 3px;
    color: var(--purple-dark);
    font-family: "Caveat", cursive;
    font-size: 21px;
    font-weight: 700;
}

.project-pin-copy h3 {
    max-width: 410px;
    margin: 0 0 13px;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(28px, 3.2vw, 43px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.project-pin-description {
    margin: 0 0 20px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.7;
}

.project-pin-tech {
    display: flex;
    margin: 0 0 24px;
    flex-wrap: wrap;
    gap: 7px;
}

.project-pin-tech span {
    padding: 6px 9px;
    transform: rotate(-1deg);
    border: 1.5px solid var(--ink);
    border-radius: 7px;
    background: color-mix(in srgb, var(--project-accent) 50%, white);
    font-family: monospace;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-pin-tech span:nth-child(2n) {
    transform: rotate(1.5deg);
}

.project-pin-link {
    display: inline-flex;
    padding: 11px 15px;
    align-items: center;
    gap: 13px;
    border: 2.5px solid var(--ink);
    border-radius: 11px;
    background: var(--ink);
    color: white;
    box-shadow: 5px 5px 0 var(--project-accent);
    font-size: 11px;
    font-weight: 800;
}

.project-pin-link svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-pin-link:focus-visible {
    outline: 4px solid var(--yellow);
    outline-offset: 4px;
}

.project-pin-note {
    position: absolute;
    z-index: 4;
    right: -17px;
    bottom: 97px;
    display: grid;
    width: 94px;
    min-height: 72px;
    place-items: center;
    transform: rotate(7deg);
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    font-family: "Caveat", cursive;
    font-size: 17px;
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-done-stamp {
    position: absolute;
    right: 24px;
    bottom: 28px;
    transform: rotate(-11deg);
    color: color-mix(in srgb, var(--project-accent) 68%, var(--ink));
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    opacity: 0.7;
}

@keyframes project-thumbtack-pop {
    0% { transform: translateX(-50%) scale(1.9); opacity: 0; }
    70% { transform: translateX(-50%) scale(0.84); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.sheet-hole {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 9px;
    aspect-ratio: 1;
    transform: translateY(-50%);
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 -67px 0 var(--cream), 0 -67px 0 1px var(--ink), 0 67px 0 var(--cream), 0 67px 0 1px var(--ink);
}

.sheet-meta {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    color: rgba(36, 34, 56, 0.64);
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.name-sheet-stamp {
    position: absolute;
    top: 25px;
    right: 24px;
    display: grid;
    width: 72px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(11deg);
    border: 3px double var(--pink);
    border-radius: 50%;
    color: var(--pink);
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.photo-file-bar {
    display: flex;
    height: 31px;
    padding: 0 9px;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--ink);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: var(--blue);
}

.photo-file-bar span {
    width: 8px;
    aspect-ratio: 1;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--pink);
}

.photo-file-bar span:nth-child(2) { background: var(--yellow); }

.photo-file-bar span:nth-child(3) { background: var(--mint); }

.photo-file-bar small {
    margin-left: 5px;
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
}

.photo-tape {
    position: absolute;
    z-index: 5;
    width: 82px;
    height: 24px;
    border: 1px solid rgba(36, 34, 56, 0.35);
    background: rgba(255, 159, 67, 0.78);
}

.photo-tape-top {
    top: -13px;
    left: 43%;
    transform: rotate(-4deg);
}

.photo-tape-side {
    right: -34px;
    bottom: 95px;
    transform: rotate(82deg);
    background: rgba(85, 230, 165, 0.74);
}

.photo-pin {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 17px;
    aspect-ratio: 1;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 2px 2px 0 var(--ink);
}

.story-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.story-actions .primary-button {
    padding: 12px 16px;
    background: var(--paper);
    font-size: 12px;
}

.story-actions .text-button {
    font-size: 12px;
}

.score-title {
    display: flex;
    padding-bottom: 11px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed var(--ink);
}

.score-title small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.score-title span {
    color: var(--yellow);
    font-size: 21px;
}

.score-list {
    display: grid;
    margin-top: 13px;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.score-list > div {
    min-width: 0;
    padding: 11px 5px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--paper);
    text-align: center;
}

.score-list strong {
    display: block;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(20px, 2.3vw, 31px);
    font-weight: 400;
}

.score-list span {
    display: block;
    margin-top: 3px;
    font-size: 7px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.score-scribble {
    display: block;
    margin-top: 13px;
    transform: rotate(-3deg);
    font-family: "Caveat", cursive;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.polaroid-tape {
    position: absolute;
    z-index: 2;
    top: -14px;
    left: 50%;
    width: 84px;
    height: 25px;
    transform: translateX(-50%) rotate(4deg);
    border: 1px solid rgba(36, 34, 56, 0.35);
    background: rgba(255, 159, 67, 0.77);
}

.laptop-screen {
    padding: 11px;
    border: var(--border);
    border-radius: 20px 20px 12px 12px;
    background: var(--ink);
    box-shadow: 6px 7px 0 var(--purple-dark);
}

.laptop-window-bar {
    display: flex;
    height: 30px;
    padding: 0 9px;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--ink);
    border-radius: 9px 9px 0 0;
    background: var(--paper);
}

.laptop-window-bar > span {
    width: 8px;
    aspect-ratio: 1;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--pink);
}

.laptop-window-bar > span:nth-child(2) { background: var(--yellow); }

.laptop-window-bar > span:nth-child(3) { background: var(--mint); }

.laptop-window-bar small {
    margin-left: auto;
    font-family: monospace;
    font-size: 9px;
    font-weight: 800;
}

.laptop-screen-content {
    min-height: 335px;
    padding: 23px 20px;
    border: 2px solid var(--ink);
    border-top: 0;
    border-radius: 0 0 7px 7px;
    background-color: #7357ff;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 14px 14px;
    color: white;
}

.laptop-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.laptop-title > span {
    display: grid;
    width: 51px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(-4deg);
    border: 2px solid var(--ink);
    border-radius: 13px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: monospace;
    font-size: 14px;
    font-weight: 900;
}

.laptop-title div {
    display: flex;
    flex-direction: column;
}

.laptop-title small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.laptop-title strong {
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    line-height: 1;
}

.laptop-skills {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 9px;
}

.laptop-skills span {
    padding: 8px 10px;
    transform: rotate(-1deg);
    border: 2px solid var(--ink);
    border-radius: 9px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 10px;
    font-weight: 850;
}

.laptop-skills span:nth-child(2n) {
    transform: rotate(2deg);
    background: var(--mint);
}

.laptop-skills span:nth-child(3n) {
    background: var(--pink);
}

.laptop-code-lines {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    gap: 8px;
}

.laptop-code-lines i {
    display: block;
    width: 76%;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
}

.laptop-code-lines i:nth-child(2) {
    width: 54%;
    margin-left: 18px;
    background: var(--yellow);
}

.laptop-code-lines i:nth-child(3) {
    width: 67%;
    margin-left: 9px;
    background: var(--mint);
}

.laptop-base {
    position: relative;
    width: calc(100% + 25px);
    height: 30px;
    margin-left: -12px;
    transform: perspective(80px) rotateX(24deg);
    border: var(--border);
    border-radius: 5px 5px 16px 16px;
    background: var(--yellow);
    box-shadow: 3px 5px 0 var(--ink);
}

.laptop-base span {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 65px;
    height: 12px;
    transform: translateX(-50%);
    border: 2px solid var(--ink);
    border-radius: 3px 3px 8px 8px;
    background: rgba(255,255,255,0.4);
}

.sticky-yellow {
    transform: rotate(-3deg);
    background: var(--yellow);
}

.sticky-pink {
    transform: translateY(9px) rotate(2deg);
    background: var(--pink);
}

.folder-tab {
    position: absolute;
    top: -25px;
    left: -3px;
    padding: 7px 12px 5px;
    border: var(--border);
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    background: var(--pink);
    font-size: 8px;
    font-weight: 900;
}

.folder-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    width: 29px;
    aspect-ratio: 1;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 14px;
    font-weight: 900;
}

@keyframes mug-steam {
    0%, 100% { transform: translateY(5px) scaleY(0.75); opacity: 0; }
    50% { transform: translateY(-7px) scaleY(1.08); opacity: 1; }
}

/* =========================================================
   FIRST-LOAD DESK SETUP SEQUENCE
========================================================= */

.has-js body.page-entering {
    overflow: hidden;
}

.laptop-screen-content {
    position: relative;
    overflow: hidden;
}

.has-js .page-entering .polaroid-tape {
    animation: intro-tape-stick 0.3s 1.22s cubic-bezier(0.2, 0.9, 0.3, 1.35) both;
}

.has-js .page-entering .laptop-screen-content::after {
    position: absolute;
    z-index: 12;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--mint);
    content: "toolkit.exe  •  BOOTING...";
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    animation: intro-laptop-boot 0.95s 1.02s ease both;
    pointer-events: none;
}

.has-js .page-entering .laptop-skills span {
    animation: intro-skill-pop 0.3s cubic-bezier(0.18, 0.9, 0.26, 1.35) both;
}

.has-js .page-entering .laptop-skills span:nth-child(1) { animation-delay: 1.48s; }

.has-js .page-entering .laptop-skills span:nth-child(2) { animation-delay: 1.54s; }

.has-js .page-entering .laptop-skills span:nth-child(3) { animation-delay: 1.60s; }

.has-js .page-entering .laptop-skills span:nth-child(4) { animation-delay: 1.66s; }

.has-js .page-entering .laptop-skills span:nth-child(5) { animation-delay: 1.72s; }

.has-js .page-entering .laptop-skills span:nth-child(n + 6) { animation-delay: 1.78s; }

.has-js .page-entering .sticky-yellow {
    animation: intro-sticky-yellow 0.42s 1.34s cubic-bezier(0.18, 0.9, 0.25, 1.35) both;
}

.has-js .page-entering .sticky-pink {
    animation: intro-sticky-pink 0.42s 1.45s cubic-bezier(0.18, 0.9, 0.25, 1.35) both;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.screw-one { top: 24px; left: 23px; }

.screw-two { top: 24px; right: 23px; }

.screw-three { bottom: 24px; left: 23px; }

.screw-four { right: 23px; bottom: 24px; }

.project-background-decor {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.project-bg-blob {
    position: absolute;
    display: block;
    border: 3px solid var(--ink);
    opacity: 0.9;
    animation: project-blob-drift 8s ease-in-out infinite;
}

.project-bg-blob-yellow {
    top: 7%;
    right: -135px;
    width: 390px;
    height: 285px;
    transform: rotate(13deg);
    border-radius: 62% 38% 55% 45% / 43% 56% 44% 57%;
    background: var(--yellow);
}

.project-bg-blob-mint {
    bottom: 3%;
    left: -125px;
    width: 335px;
    height: 245px;
    transform: rotate(-16deg);
    border-radius: 42% 58% 36% 64% / 58% 37% 63% 42%;
    background: var(--mint);
    animation-delay: -3.5s;
}

.project-section-sticker {
    --sticker-rotation: 0deg;
    position: absolute;
    z-index: 4;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: visible;
    transform: rotate(var(--sticker-rotation));
    border: 3px solid var(--ink);
    color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    text-align: center;
    animation: project-sticker-float 4.8s ease-in-out infinite;
}

.project-section-sticker strong,
.project-section-sticker small {
    display: block;
    max-width: 100%;
    margin: 0;
    line-height: 0.95;
    white-space: nowrap;
}

.project-section-sticker strong {
    font-family: "Bowlby One", sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.project-section-sticker small {
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.project-sticker-idea {
    --sticker-rotation: -8deg;
    top: 30%;
    left: 18px;
    width: 90px;
    height: 70px;
    border-radius: 15px;
    background: var(--blue);
}

.project-sticker-idea small {
    margin-bottom: 5px;
}

.project-sticker-creative {
    --sticker-rotation: 8deg;
    top: 20%;
    right: 18px;
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--pink);
    animation-delay: -1.2s;
}

.project-sticker-creative::before {
    position: absolute;
    inset: 7px;
    border: 2px dashed var(--ink);
    border-radius: inherit;
    content: "";
}

.project-sticker-creative strong,
.project-sticker-creative small {
    position: relative;
    z-index: 1;
}

.project-sticker-creative small {
    margin-top: 5px;
    font-size: 8px;
}

.project-sticker-bolt {
    --sticker-rotation: -7deg;
    bottom: 17%;
    left: 28px;
    width: 68px;
    aspect-ratio: 1;
    padding: 12px;
    border-radius: 50%;
    background: var(--yellow);
    animation-delay: -2.4s;
}

.project-sticker-bolt svg {
    width: 34px;
    overflow: visible;
    fill: var(--pink);
    stroke: var(--ink);
    stroke-width: 2.5;
    stroke-linejoin: round;
}

.project-sticker-web {
    --sticker-rotation: 7deg;
    right: 25px;
    bottom: 7%;
    width: 94px;
    height: 60px;
    border-radius: 999px;
    background: var(--mint);
    animation-delay: -3.3s;
}

.project-sticker-web small {
    margin-bottom: 4px;
}

.project-background-doodle {
    position: absolute;
    z-index: 2;
    overflow: visible;
    fill: none;
    stroke: rgba(255, 255, 255, 0.68);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-doodle-loop {
    top: 10%;
    left: 4%;
    width: 205px;
    transform: rotate(-11deg);
}

.project-doodle-stars {
    right: 4%;
    bottom: 29%;
    width: 125px;
    fill: rgba(255, 217, 61, 0.35);
    animation: project-stars-twinkle 3.8s ease-in-out infinite;
}

@keyframes project-sticker-float {
    0%, 100% {
        transform: translateY(0) rotate(var(--sticker-rotation));
    }
    50% {
        transform: translateY(-9px) rotate(calc(var(--sticker-rotation) + 3deg));
    }
}

@keyframes project-blob-drift {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 8px -12px;
    }
}

@keyframes project-stars-twinkle {
    0%, 100% {
        transform: rotate(-5deg) scale(0.92);
        opacity: 0.65;
    }
    50% {
        transform: rotate(4deg) scale(1.06);
        opacity: 1;
    }
}

.exhibit-number {
    position: absolute;
    z-index: 7;
    top: 66px;
    right: -20px;
    display: grid;
    width: 61px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(8deg);
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
    box-shadow: 4px 4px 0 var(--ink);
    font-family: "Bowlby One", sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.exhibit-side-note {
    position: absolute;
    z-index: 6;
    top: 34%;
    right: -164px;
    display: flex;
    width: 122px;
    min-height: 103px;
    padding: 15px 14px;
    transform: rotate(5deg);
    flex-direction: column;
    justify-content: center;
    border: 2.5px solid var(--ink);
    background: var(--project-accent);
    box-shadow: 5px 5px 0 var(--ink);
    color: var(--ink);
}

.exhibit-side-note small {
    font-family: monospace;
    font-size: 7px;
    font-weight: 900;
}

.exhibit-side-note strong {
    margin-top: 5px;
    font-family: "Bowlby One", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 0.95;
}

.exhibit-side-note i {
    position: absolute;
    right: 10px;
    bottom: 7px;
    font-size: 21px;
    font-style: normal;
    font-weight: 900;
}

.exhibit-hanging-system {
    position: absolute;
    z-index: 0;
    top: -45px;
    right: 20%;
    left: 20%;
    height: 61px;
}

.exhibit-hanging-system i {
    position: absolute;
    top: 0;
    width: 14px;
    aspect-ratio: 1;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
    box-shadow: 2px 2px 0 var(--ink);
}

.exhibit-hanging-system i:first-child { left: 0; }

.exhibit-hanging-system i:last-child { right: 0; }

.exhibit-hanging-system span::before,
.exhibit-hanging-system span::after {
    position: absolute;
    top: 10px;
    width: 2px;
    height: 58px;
    transform-origin: top;
    background: var(--ink);
    content: "";
}

.exhibit-hanging-system span::before {
    left: 7px;
    transform: rotate(-28deg);
}

.exhibit-hanging-system span::after {
    right: 7px;
    transform: rotate(28deg);
}

.exhibit-artwork {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 16px 16px 12px;
    transform: rotate(-1.1deg) translateZ(24px);
    border: 4px solid var(--ink);
    background: #312d45;
    box-shadow: 10px 12px 0 rgba(36, 34, 56, 0.75), inset 0 0 0 5px var(--project-accent);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.exhibit-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 3px solid var(--ink);
    background: var(--project-accent);
}

.exhibit-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.exhibit-screen-shine {
    position: absolute;
    inset: 0;
    transform: translateX(-135%) skewX(-17deg);
    background: linear-gradient(90deg, transparent 34%, rgba(255, 255, 255, 0.42), transparent 66%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.exhibit-status {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    padding: 7px 9px;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--ink);
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: monospace;
    font-size: 8px;
    font-weight: 900;
}

.exhibit-status i {
    width: 8px;
    aspect-ratio: 1;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--mint);
    animation: exhibition-status-pulse 1.4s ease-in-out infinite;
}

.exhibit-artwork figcaption {
    padding: 10px 3px 0;
    overflow: hidden;
    color: white;
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.exhibit-frame-corner {
    position: absolute;
    z-index: 4;
    width: 23px;
    height: 23px;
    border-color: var(--project-accent);
    pointer-events: none;
}

.corner-top-left { top: 6px; left: 6px; border-top: 4px solid var(--project-accent); border-left: 4px solid var(--project-accent); }

.corner-top-right { top: 6px; right: 6px; border-top: 4px solid var(--project-accent); border-right: 4px solid var(--project-accent); }

.corner-bottom-left { bottom: 6px; left: 6px; border-bottom: 4px solid var(--project-accent); border-left: 4px solid var(--project-accent); }

.corner-bottom-right { right: 6px; bottom: 6px; border-right: 4px solid var(--project-accent); border-bottom: 4px solid var(--project-accent); }

.exhibit-plaque {
    position: relative;
    z-index: 4;
    width: 78%;
    margin: 28px 0 0 7%;
    padding: 27px 26px 25px;
    transform: rotate(0.8deg) translateZ(38px);
    border: 2.5px solid var(--ink);
    border-radius: 7px;
    background:
        linear-gradient(rgba(115, 87, 255, 0.055) 1px, transparent 1px),
        var(--paper);
    background-size: 100% 27px;
    box-shadow: 7px 8px 0 var(--ink);
}

.plaque-screw {
    position: absolute;
    top: 10px;
    width: 9px;
    aspect-ratio: 1;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: var(--project-accent);
}

.plaque-screw-left { left: 10px; }

.plaque-screw-right { right: 10px; }

.exhibit-plaque-topline {
    display: flex;
    margin-bottom: 13px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.exhibit-plaque-topline > span {
    padding: 5px 7px;
    background: var(--project-accent);
}

.exhibit-plaque-topline time {
    padding-bottom: 2px;
    border-bottom: 2px solid var(--ink);
}

.exhibit-plaque h3 {
    max-width: 100%;
    margin: 0 0 10px;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(24px, 2.7vw, 35px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.exhibit-plaque > p {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.7;
}

.exhibit-tech-list {
    display: flex;
    margin-bottom: 21px;
    flex-wrap: wrap;
    gap: 7px;
}

.exhibit-tech-list span {
    padding: 6px 9px;
    transform: rotate(-1deg);
    border: 1.8px solid var(--ink);
    border-radius: 999px;
    background: color-mix(in srgb, var(--project-accent) 62%, white);
    box-shadow: 2px 2px 0 var(--ink);
    font-family: monospace;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.exhibit-tech-list span:nth-child(2n) {
    transform: rotate(1.5deg);
    background: white;
}

.exhibit-visit-link {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 14px 10px 17px;
    align-items: center;
    gap: 12px;
    border: 2.5px solid var(--ink);
    border-radius: 12px;
    background: var(--ink);
    color: white;
    box-shadow: 4px 4px 0 var(--project-accent);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.exhibit-visit-link:hover {
    transform: translateY(-3px) rotate(-1deg);
    background: var(--project-accent);
    color: var(--ink);
}

.exhibit-visit-link svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exhibit-selected-stamp {
    position: absolute;
    right: 18px;
    bottom: 20px;
    display: grid;
    width: 59px;
    aspect-ratio: 1;
    place-items: center;
    transform: rotate(-12deg);
    border: 2px solid var(--purple-dark);
    border-radius: 50%;
    color: var(--purple-dark);
    font-family: monospace;
    font-size: 7px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
}

.exhibit-selected-stamp::before {
    position: absolute;
    inset: 4px;
    border: 1px dashed currentColor;
    border-radius: inherit;
    content: "";
}

.portfolio-end-note {
    display: flex;
    width: min(100%, 780px);
    margin: 82px auto 0;
    padding: 20px 24px;
    transform: rotate(-1deg);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: var(--border);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 7px 8px 0 var(--ink);
}

.portfolio-end-note > span {
    padding: 7px 10px;
    background: var(--pink);
    font-family: monospace;
    font-size: 9px;
    font-weight: 900;
}

.portfolio-end-note p {
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: 21px;
    font-weight: 700;
}

.portfolio-end-note a {
    padding-bottom: 3px;
    border-bottom: 3px solid var(--purple);
    color: var(--purple-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
