
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #fffdfb;
    --text: #2b292b;
    --muted: #817b80;
    --pink: #f2a9bd;
    --pink-hover: #e889aa;
    --pink-soft: #f9dce5;
    --border: #ebe5e7;

    --cursor-hover: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='9' cy='9' r='6' fill='%23f2a9bd' stroke='%23a95c78' stroke-width='1.2'/%3E%3Cpath d='M13 13l6 6' stroke='%23a95c78' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 9 9, pointer;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;

    /* Keep the base text small */
    font-size: 14px;
    line-height: 1.45;

    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;

    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M2 2l14 10-7 1 4 7-3 2-4-7-4 5z' fill='%23f2a9bd' stroke='%23a95c78' stroke-width='1.2'/%3E%3C/svg%3E") 2 2, auto;
}

.verify-copy,
.blank-page-copy {
    text-align: center;
}

.legal-page {
    width: min(100%, 850px);
}

.legal-copy {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    color: var(--text);
    text-align: left;
    font-size: 14px;
    line-height: 1.55;
}

.legal-copy h1 {
    color: var(--text);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.025em;
    margin: 0 0 16px;
    text-align: center;
}

.legal-copy h2 {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    margin: 22px 0 10px;
}

.legal-copy p,
.legal-copy li {
    margin: 0 0 12px;
}

.legal-copy ul {
    padding-left: 22px;
    margin: 0 0 14px;
}

.legal-copy strong {
    color: var(--pink-hover);
}

.verify-links {
    display: inline-block;
    margin-top: 3px;
}

.verify-links .divider-dot {
    margin: 0 4px;
}

.verify-copy,
.blank-page-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

::selection {
    background: var(--pink-soft);
    color: #7b5360;
}

button,
a {
    font: inherit;
    color: inherit;
}

a {
    text-decoration: none;
}

b,
strong,
.green-strong,
.bold,
a.bold {
    color: var(--pink);
    font-weight: 600;
}

[data-preview-title],
[data-preview-url],
a.bold {
    cursor: pointer;
}

button {
    border: 0;
    background: none;
}

a:hover,
button:hover,
button:focus-visible,
.job:hover,
.category-entry:hover,
.shot:hover {
    cursor: var(--cursor-hover);
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(232, 137, 170, .8);
    outline-offset: 2px;
}

.hidden {
    display: none !important;
}

.reviews-site {
    min-height: 100vh;
}

.reviews-shell {
    width: min(1160px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 22px 0 80px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 8px 0;
}

.reviews-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-back {
    display: inline-block;
    font-size: 12px;
    color: var(--muted);
}

.reviews-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: var(--pink-hover);
    margin-bottom: 8px;
}

.reviews-title {
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
}

.reviews-count {
    color: var(--text);
    font-weight: 600;
}

.reviews-average {
    color: var(--pink-hover);
    font-size: 13px;
    letter-spacing: .08em;
}

.reviews-divider {
    color: var(--border);
}

.reviews-grid-wrap {
    width: 100%;
    min-height: 480px;
}

.reviews-grid {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 20px;
    align-content: start;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.reviews-grid::-webkit-scrollbar {
    width: 10px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: rgba(244, 227, 232, 0.7);
    border-radius: 10px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 10px;
}

.review-card {
    position: relative;
    min-height: 174px;
    padding: 19px 17px 15px;
    border-radius: 18px;
    border: 1px solid rgba(231, 211, 217, .9);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 10px 30px rgba(43,41,43,0.07);
    transition: transform 280ms ease, box-shadow 280ms ease, border 280ms ease, background 280ms ease;
    transform: translateY(0) scale(1);
    animation: riseIn 450ms ease both;
    cursor: pointer;
}

.review-card:nth-child(3n+1) { animation-delay: 40ms; }
.review-card:nth-child(3n+2) { animation-delay: 70ms; }
.review-card:nth-child(3n+3) { animation-delay: 110ms; }

.review-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, transparent, rgba(242,169,189,0.1), transparent);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none;
}

.review-card-profile-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--profile-effect) center / cover no-repeat;
    opacity: .16;
    pointer-events: none;
}

.review-card:hover {
    z-index: 2;
    transform: translateY(0);
    border-color: var(--pink);
    box-shadow: 0 14px 40px rgba(242,169,189,0.22);
}

.review-card-focus {
    border-color: var(--pink-hover) !important;
    box-shadow: 0 0 0 2px var(--pink-soft), 0 0 0 5px rgba(242,169,189,0.42), 0 18px 50px rgba(242,169,189,0.34) !important;
    animation: reviewPulse 1100ms ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.review-avatar-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink));
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(43,41,43,0.08);
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar-decoration {
    position: absolute;
    inset: -5px;
    width: 52px;
    height: 52px;
    object-fit: contain;
    pointer-events: none;
}

.review-user-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-user {
    color: #858287;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.review-handle {
    color: var(--muted);
    font-size: 10px;
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-rating {
    width: 100%;
    text-align: center;
    color: var(--pink-hover);
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

.review-order-line {
    color: #858287;
    font-size: 11px;
    padding: 13px 0 0;
    overflow-wrap: anywhere;
}

.order-value {
    color: #858287;
    font-weight: 600;
}

.review-comment {
    margin: 8px 0 0;
    color: #858287;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    min-height: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    color: var(--muted);
    font-size: 11px;
}

.review-rating-number {
    color: var(--pink-hover);
}

.review-empty {
    color: var(--muted);
}

.empty-review {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-modal-backdrop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43,41,43,0.46);
    backdrop-filter: blur(3px);
    z-index: 50;
}

.reviews-modal {
    width: min(560px, calc(100vw - 40px));
    border-radius: 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 30px 120px rgba(43,41,43,0.3);
    padding: 20px;
    position: relative;
    color: var(--text);
}

.reviews-modal::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: var(--profile-effect) center / cover no-repeat;
    opacity: .22;
    pointer-events: none;
}

.reviews-modal > * {
    position: relative;
    z-index: 1;
}

.reviews-modal-close {
    position: absolute;
    right: 11px;
    top: 7px;
    z-index: 10 !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-soft) 0 17px, transparent 17px);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
}

.reviews-modal.has-profile-effect .reviews-avatar {
    border-color: transparent;
}

.reviews-modal-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0 14px;
    border-bottom: 1px solid var(--border);
}

.reviews-avatar-wrap {
    flex: 0 0 auto;
}

.reviews-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    background: linear-gradient(135deg, var(--pink-soft), var(--pink));
    color: var(--text);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.reviews-modal-name {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

.reviews-modal-meta {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.reviews-modal-rating {
    margin-left: auto;
    color: var(--pink-hover);
    letter-spacing: .12em;
}

.reviews-modal-body {
    padding: 20px 0 8px;
}

.reviews-modal-section {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.reviews-modal-section:last-child {
    border-bottom: 0;
}

.reviews-modal-label {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .17em;
    color: var(--muted);
    margin-bottom: 12px;
}

.reviews-modal-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 13px;
}

.reviews-modal-spacer {
    color: var(--pink);
}

.reviews-modal-other-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-review-mini {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.78);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text);
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.modal-review-mini:hover {
    border-color: var(--pink);
}

.mini-rating {
    color: var(--pink-hover);
    font-size: 11px;
}

.mini-date {
    color: var(--muted);
    font-size: 11px;
}

.mini-comment {
    color: var(--muted);
    font-size: 12px;
}

.reviews-modal {
    width: min(650px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 22px;
}

.reviews-modal-top {
    min-height: 76px;
    padding: 10px 0 14px;
}

.reviews-avatar-wrap {
    position: relative;
    width: 58px;
    height: 58px;
}

.reviews-avatar {
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.reviews-profile-decoration {
    position: absolute;
    inset: -4px;
    z-index: 2;
    width: 66px;
    height: 66px;
    object-fit: contain;
    pointer-events: none;
}

.reviews-modal-body {
    padding: 14px 0 0;
}

.reviews-modal-section {
    padding: 14px 0;
}

.reviews-modal-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: min(100%, 360px);
    min-height: 34px;
    padding: 6px 10px 6px 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: var(--text);
    text-decoration: none;
}

.profile-chip img {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-chip-arrow {
    margin-left: auto;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border-radius: 0;
    object-fit: contain;
    color: var(--pink-hover);
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px dotted currentColor;
}

.reviews-cta img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.reviews-modal-selected {
    padding: 8px 0 14px;
}

.selected-review-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255,255,255,.66);
}

.selected-review-field {
    display: grid;
    gap: 5px;
}

.selected-review-label {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.selected-review-order,
.selected-review-comment {
    color: #858287;
    font-size: 13px;
}

.selected-review-order {
    overflow-wrap: anywhere;
}

.selected-review-rating {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--pink-hover);
    background: var(--pink-soft);
    font-size: 11px;
    font-weight: 600;
}

.selected-review-comment-field {
    gap: 6px;
}

.selected-review-comment {
    margin: 0;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.selected-review-date {
    color: var(--muted);
    font-size: 11px;
}

.reviews-modal.has-banner {
    padding-top: 190px;
    background-image: var(--profile-banner);
    background-position: top center;
    background-size: 100% 180px;
    background-repeat: no-repeat;
}

.reviews-modal.has-banner::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 180px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
    pointer-events: none;
}

@keyframes reviewPulse {
    0% { box-shadow: 0 0 0 rgba(242, 169, 189, 0), 0 0 0 rgba(242, 169, 189, 0); }
    45% { box-shadow: 0 0 0 2px var(--pink-soft), 0 0 0 5px rgba(242,169,189,0.82); }
    100% { box-shadow: 0 0 0 rgba(242, 169, 189, 0), 0 0 0 rgba(242, 169, 189, 0); }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home,
.category-page,
.showcase {
    position: relative;
    z-index: 1;
    background: transparent;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.dot-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.dot-field::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    pointer-events: none;

    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, .5) 0,
        rgba(255, 255, 255, .5) 1px,
        transparent 1px,
        transparent 4px
    );

    mix-blend-mode: soft-light;
}

.pattern {
    position: absolute;
    display: block;

    opacity: .82;
    filter: blur(.55px);

    background-image: radial-gradient(
        circle,
        rgba(242, 169, 189, .95) 1.35px,
        transparent 1.7px
    );

    background-size: 13px 13px;

    mask-image: radial-gradient(
        ellipse at center,
        #000 0%,
        #000 34%,
        rgba(0, 0, 0, .72) 53%,
        transparent 78%
    );

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        #000 0%,
        #000 34%,
        rgba(0, 0, 0, .72) 53%,
        transparent 78%
    );
}

.p1 {
    width: 390px;
    height: 290px;
    top: 3%;
    left: 9%;
    transform: rotate(-10deg);
}

.p2 {
    width: 330px;
    height: 260px;
    top: 21%;
    right: 4%;
    transform: rotate(12deg);
}

.p3 {
    width: 430px;
    height: 300px;
    bottom: 4%;
    left: 30%;
    transform: rotate(-7deg);
}

.p4,
.p5,
.p6,
.p7 {
    display: none;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    height: 70px;

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

    position: relative;
    z-index: 5;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 8px;
    padding: 0;

    color: #2b292b;
    font-weight: 500;
    letter-spacing: -.025em;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.brand img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.brand:hover {
    color: var(--pink-hover);
    transform: translateY(-1px);
}


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

.page-content {
    width: 100%;

    padding:
        calc(23vh - 10px)
        24px
        90px;

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

    text-align: center;
}

.intro,
.work-wrap {
    width: min(100%, 720px);

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


/* IMPORTANT:
   This stays at 14px instead of using clamp()
   so it does not become 18-19px on large screens.
*/

.intro-copy {
    max-width: 650px;

    margin: 0 auto;

    text-align: center;

    color: #4e4a4e;

    font-size: 14px;
    line-height: 1.45;
}

.intro-copy p {
    margin: 0 0 15px;
}

.api-page-endpoint {
    color: var(--pink-hover);
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
}

.api-page-flower {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.api-page-title {
    margin: 0 0 15px;
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
}

.api-page-intro {
    padding-left: 0;
}

.location-highlight {
    color: var(--pink-hover);
    font-weight: 600;
}


/* =========================================================
   SAGE LINK
   ========================================================= */

.sage-link {
    color: inherit;

    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: #8e888c;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    cursor: pointer;

    transition:
        color .2s ease,
        text-decoration-color .2s ease;
}

.sage-link:hover {
    color: var(--pink-hover);
    text-decoration-color: var(--pink-hover);
}


/* =========================================================
   WORK
   ========================================================= */

.work-wrap {
    margin-top: 25px;

    display: grid;

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

    gap: 30px;

    text-align: left;
}

.work-column {
    width: 100%;
}

.work-column h2.category-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 0 0 12px;

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

    letter-spacing: -.015em;
}

.category-heading img {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    object-fit: contain;
}

.category-arrow {
    display: block;

    width: fit-content;

    margin: 10px auto 0;

    color: #e889aa;

    font-size: 11px;
    text-decoration: none;

    transition:
        color .18s ease;
}

.category-arrow:hover,
.category-arrow:focus-visible {
    color: var(--pink-hover);
}

.category-empty-home {
    min-height: 24px;

    margin-top: 10px;

    color: rgba(129, 123, 128, .42);

    font-size: 11px;

    text-align: center;
}

.jobs {
    width: 100%;

    max-height: 248px;

    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #e8c6d0 transparent;
}

.jobs::-webkit-scrollbar {
    width: 6px;
}

.jobs::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #e8c6d0;
}


/* =========================================================
   WORK ITEM
   ========================================================= */

.job {
    display: grid;

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

    align-items: center;

    gap: 14px;

    width: 100%;

    padding: 7px 10px;
    margin: 0 -10px;

    border-radius: 10px;

    cursor: pointer;
    outline: none;

    transition:
        background .18s ease,
        transform .18s ease;
}

.job:hover,
.job:focus-visible {
    background: rgba(255, 237, 243, .58);
    transform: translateX(2px);
}


/* =========================================================
   GROUP ICON
   ========================================================= */

.job-group-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    overflow: hidden;

    border-radius: 12px;

    background: #f6eef0;

    display: grid;
    place-items: center;
}

.job-group-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.job-icon-placeholder {
    width: 20px;
    height: 20px;

    border-radius: 6px;

    background: #f2a9bd;

    opacity: .35;
}


/* =========================================================
   WORK TEXT
   ========================================================= */

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

.job-title {
    display: inline-flex;
    align-items: center;

    color: #2b292b;

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

    transition:
        color .2s ease;
}

.job:hover .job-title,
.job:focus-visible .job-title {
    color: var(--pink-hover);
}

.job-showcase {
    margin-top: 2px;

    color: #858085;

    font-size: 12px;
    line-height: 1.45;

    transition:
        color .2s ease;
}

.job:hover .job-showcase,
.job:focus-visible .job-showcase {
    color: #a47787;
}


/* =========================================================
   CATEGORY PAGE
   ========================================================= */

.category-page {
    width: 100%;

    min-height: 100vh;

    padding:
        0
        24px
        80px;
}

.category-nav {
    width: 100%;
    height: 70px;

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

    position: relative;
}

.category-nav .nav-link {
    position: absolute;
    left: 0;
}

.category-brand {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #2b292b;

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

    text-transform: lowercase;
}

.category-brand img {
    width: 23px;
    height: 23px;

    object-fit: contain;
}

.category-inner {
    width: min(100%, 900px);

    margin: 0 auto;

    padding-top: 34px;
}

.category-brand + .category-search {
    margin-top: 12px;
}


/* =========================================================
   CATEGORY SEARCH
   ========================================================= */

.category-search {
    width: max-content;

    min-width: 110px;
    max-width: min(100%, 360px);

    height: 32px;

    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 24px;

    padding: 0 10px;

    border: 1px solid #f1c6d2;
    border-radius: 999px;

    background: rgba(249, 220, 229, .18);

    color: #d08da1;

    transition:
        width .3s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.category-search:focus-within,
.category-search.has-query {
    width: max-content;

    min-width: 110px;
    max-width: min(100%, 360px);

    background: rgba(249, 220, 229, .3);

    box-shadow:
        0 0 0 3px rgba(242, 169, 189, .13);
}

.search-icon {
    position: relative;

    flex: 0 0 auto;

    width: 11px;
    height: 11px;

    line-height: 1;
}

.search-icon::before {
    content: "";

    position: absolute;

    inset:
        0
        2px
        2px
        0;

    border:
        1.5px solid currentColor;

    border-radius: 50%;
}

.search-icon::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 5px;
    height: 1.5px;

    border-radius: 2px;

    background: currentColor;

    transform: rotate(45deg);
    transform-origin: right center;
}

.category-search input {
    min-width: 0;

    width: auto;
    max-width: 100%;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: var(--text);

    font: inherit;
}

.category-search input::placeholder {
    color: #d08da1;
}

.category-search input::-webkit-search-cancel-button {
    opacity: .8;

    filter:
        invert(62%)
        sepia(25%)
        saturate(700%)
        hue-rotate(295deg)
        brightness(92%);
}


/* =========================================================
   CATEGORY ENTRIES
   ========================================================= */

.category-entries {
    display: grid;

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

    gap: 10px;
}

.category-entry {
    width: 100%;

    min-height: 220px;

    padding: 8px;

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

    gap: 8px;

    position: relative;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: rgba(255, 255, 255, .62);

    text-align: left;

    cursor: pointer;

    animation:
        category-entry-in .4s ease both;

    animation-delay:
        calc(var(--entry-index) * 55ms);

    transition:
        background .18s ease,
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.category-entry:hover,
.category-entry:focus-visible {
    border-color: #f0cad5;

    background: rgba(255, 237, 243, .58);

    outline: none;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(75, 43, 52, .08);
}

@keyframes category-entry-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

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

    white-space: nowrap;

    border: 0;
}

.category-entry-icon {
    width: 100%;
    height: 180px;

    aspect-ratio: 1;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 7px;

    background: #f6eef0;
}

.category-entry-icon img {
    width: 100%;
    height: 100%;

    display: block;

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

.category-entry-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;

    padding:
        0
        3px
        3px;
}

.category-entry-copy strong {
    color: var(--text);

    overflow: hidden;

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

    text-transform: lowercase;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-entry-copy span {
    overflow: hidden;

    color: var(--muted);

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-empty {
    margin: 20px 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.showcase {
    width: 100%;

    min-height: 100vh;

    padding:
        0
        24px
        80px;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        transform .3s ease;
}

.showcase.visible {
    opacity: 1;
    transform: none;
}


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

.showcase-nav {
    width: 100%;
    height: 70px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.nav-link {
    padding: 0;

    color: #666065;

    font-size: 13px;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.nav-link:hover {
    color: var(--pink-hover);

    transform: translateX(-2px);
}


/* =========================================================
   SHOWCASE MAIN
   ========================================================= */

.showcase-inner {
    width: 100%;

    min-height:
        calc(100vh - 70px);

    margin: 0 auto;

    padding:
        30px
        0
        70px;

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


/* =========================================================
   SHOWCASE HEADER
   ========================================================= */

.showcase-head {
    width: fit-content;

    max-width:
        calc(100vw - 48px);

    margin:
        0
        auto
        35px;

    display: flex;

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

    gap: 17px;

    text-align: left;
}

.group-icon-wrap {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    overflow: hidden;

    border-radius: 14px;

    background: #f6eef0;

    display: grid;
    place-items: center;
}

.group-icon-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.showcase-copy {
    min-width: 0;

    width: max-content;

    max-width:
        calc(100vw - 123px);
}

.showcase-copy h1 {
    margin:
        0
        0
        4px;

    color: #2b292b;

    font-size: 17px;
    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -.025em;
}

.showcase-copy p {
    margin: 0;

    color: #858085;

    font-size: 12px;
    line-height: 1.45;

    overflow-wrap: break-word;
}

.showcase-target-link {
    color: var(--pink-hover);
    text-decoration: none;
}

.showcase-target-link:hover,
.showcase-target-link:focus-visible {
    color: #d66d91;
    text-decoration: underline;
}


/* =========================================================
   PINTEREST BOARD
   ========================================================= */

.screens {
    width: 582px;

    max-width:
        calc(100vw - 48px);

    margin:
        0
        auto;

    column-count: 2;

    column-fill: balance;

    gap: 10px;

    text-align: left;
}


/* =========================================================
   SCREENSHOT
   ========================================================= */

.shot {
    width: 100%;

    position: relative;

    display: block;

    padding: 0;

    margin:
        0
        0
        10px;

    border: 0;

    border-radius: 10px;

    overflow: hidden;

    break-inside: avoid;

    background: #fff;

    cursor: zoom-in;

    page-break-inside: avoid;

    transition:
        transform .25s ease,
        filter .25s ease,
        box-shadow .25s ease;
}

.shot img,
.shot video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.shot video {
    background:
        linear-gradient(
            135deg,
            #f9dce5,
            #f2c0cf
        );

    aspect-ratio: 9 / 16;

    min-height: 220px;
}

.shot:hover {
    filter: brightness(.97);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(75, 43, 52, .08);
}

.shot:hover img,
.shot:hover video {
    transform: scale(1.015);
}


/* =========================================================
   VIDEO INDICATOR
   ========================================================= */

.video-indicator {
    position: absolute;

    right: 12px;
    bottom: 12px;

    width: auto;
    height: auto;

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

    background: transparent;

    border: 0;

    box-shadow: none;

    pointer-events: none;

    z-index: 1;
}

.video-play-icon {
    width: 0;
    height: 0;

    margin-left: 2px;

    border-top:
        7px solid transparent;

    border-bottom:
        7px solid transparent;

    border-left:
        11px solid #f2a9bd;

    filter:
        drop-shadow(
            0 0 1px rgba(255, 255, 255, .5)
        );
}


/* =========================================================
   EMPTY SHOWCASE
   ========================================================= */

.empty-screens {
    width: 100%;

    padding:
        30px
        20px;

    color: #8b8589;

    font-size: 12px;

    text-align: center;

    column-span: all;
}


/* =========================================================
   LINK PREVIEW
   ========================================================= */

.link-preview {
    position: fixed;

    z-index: 100;

    width: 252px;

    padding: 8px;

    display: flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .97);

    box-shadow:
        0 14px 35px rgba(75, 43, 52, .13);

    backdrop-filter: blur(10px);

    opacity: 0;

    transform:
        translateY(5px)
        scale(.98);

    pointer-events: none;

    transition:
        opacity .15s ease,
        transform .15s ease;
}

.link-preview.visible {
    opacity: 1;

    transform: none;
}

.preview-thumb {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 9px;

    overflow: hidden;

    background: #f8e4ea;

    display: grid;
    place-items: center;
}

.preview-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.preview-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.preview-copy strong {
    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.preview-copy span {
    color: #8b8589;

    font-size: 10px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 120;

    padding: 40px;

    background:
        rgba(255, 253, 251, .95);

    backdrop-filter: blur(10px);

    display: grid;

    place-items: center;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .18s ease;
}

.lightbox.visible {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-title {
    position: absolute;

    top: 22px;
    left: 50%;

    color: #777176;

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

    transform:
        translateX(-50%);
}

.lightbox img,
.lightbox video {
    max-width:
        min(1200px, 92vw);

    max-height: 88vh;

    display: block;

    border-radius: 10px;

    box-shadow:
        0 20px 60px rgba(50, 30, 38, .12);
}

.lightbox img[hidden],
.lightbox video[hidden] {
    display: none !important;
}

.lightbox video {
    width:
        min(1000px, 92vw);

    background: #000;

    color-scheme: light;
}

.lightbox video::-webkit-media-controls-panel {
    background:
        rgba(242, 169, 189, .18);
}

.lightbox video::-webkit-media-controls-play-button,
.lightbox video::-webkit-media-controls-mute-button,
.lightbox video::-webkit-media-controls-fullscreen-button,
.lightbox video::-webkit-media-controls-current-time-display,
.lightbox video::-webkit-media-controls-time-remaining-display,
.lightbox video::-webkit-media-controls-timeline,
.lightbox video::-webkit-media-controls-volume-slider,
.lightbox video::-webkit-media-controls-volume-slider-container,
.lightbox video::-webkit-media-controls-volume-control-container {
    filter:
        hue-rotate(330deg)
        saturate(2);
}


/* =========================================================
   LIGHTBOX CLOSE
   ========================================================= */

#close-lightbox {
    position: absolute;

    top: 22px;
    right: 26px;

    width: 28px;
    height: 28px;

    padding: 0;

    background: transparent;

    border: 0;

    color: var(--pink-hover);

    font-size: 26px;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

#close-lightbox:hover {
    color: #d66d91;

    transform:
        rotate(5deg);
}


/* =========================================================
   LIGHTBOX ARROWS
   ========================================================= */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .8);

    color: #777176;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transform:
        translateY(-50%);

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.lightbox-arrow:hover {
    background: #fff;

    color: var(--pink-hover);
}

.lightbox-arrow-previous {
    left: 26px;
}

.lightbox-arrow-next {
    right: 26px;
}


/* =========================================================
   LARGE SCREENS
   ========================================================= */

@media (min-width: 2200px) {
    .screens {
        width: 1220px;

        max-width:
            calc(100vw - 100px);

        column-count: 4;

        gap: 10px;
    }
}


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

@media (max-width: 1200px) {
    .showcase-inner {
        width: 100%;
    }

    .screens {
        width: 582px;

        max-width:
            calc(100vw - 48px);

        column-count: 2;

        gap: 10px;
    }
}


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

@media (max-width: 900px) {
    .page-content {
        padding-top: 18vh;
    }

    .intro,
    .work-wrap {
        width:
            min(100%, 680px);
    }

    .showcase {
        padding-left: 20px;
        padding-right: 20px;
    }

    .showcase-inner {
        width: 100%;

        min-height:
            calc(100vh - 60px);

        padding-top: 30px;
    }

    .showcase-head {
        max-width:
            calc(100vw - 40px);
    }

    .screens {
        width: 582px;

        max-width:
            calc(100vw - 40px);

        column-count: 2;

        gap: 8px;
    }
}


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

@media (max-width: 760px) {

    html {
        height: auto;

        min-height: 100%;

        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        min-height: 100dvh;

        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    #home,
    .category-page,
    .showcase {
        min-height: 100dvh;
    }

    .dot-field {
        opacity: .9;
    }

    .reviews-shell {
        width: min(100%, calc(100vw - 28px));
        padding-top: 16px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-height: none;
        overflow-y: visible;
    }

    .review-card {
        min-width: 0;
        padding: 15px 13px 13px;
    }

    .dot-field::after {
        opacity: .05;
    }

    .pattern {
        opacity: .42;

        filter: blur(.25px);

        background-image:
            radial-gradient(
                circle,
                rgba(242, 169, 189, .7) 1.1px,
                transparent 1.8px
            );

        background-size: 14px 14px;

        mask-image:
            radial-gradient(
                ellipse at center,
                #000 0%,
                #000 40%,
                rgba(0, 0, 0, .72) 58%,
                transparent 80%
            );

        -webkit-mask-image:
            radial-gradient(
                ellipse at center,
                #000 0%,
                #000 40%,
                rgba(0, 0, 0, .72) 58%,
                transparent 80%
            );
    }

    .p1 {
        width: 260px;
        height: 190px;

        top: 3%;
        left: 4%;

        transform:
            rotate(-6deg);
    }

    .p2 {
        width: 220px;
        height: 180px;

        top: 18%;
        right: 3%;

        transform:
            rotate(8deg);
    }

    .p3 {
        width: 280px;
        height: 210px;

        bottom: 4%;
        left: 22%;

        transform:
            rotate(-5deg);
    }

    .topbar {
        height: 60px;
    }

    .page-content {
        padding:
            16vh
            20px
            70px;
    }

    /* Still 14px — no scaling up */
    .intro-copy {
        font-size: 14px;
        line-height: 1.45;
    }

    .work-wrap {
        margin-top: 28px;

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .job {
        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 10px;
    }

    .showcase {
        padding:
            0
            14px
            60px;
    }

    .category-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-nav .nav-link {
        left: 0;
    }

    .category-entries {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .category-entry {
        min-height: 190px;
    }

    .category-entry-icon {
        height: 155px;
    }

    .showcase-nav {
        height: 60px;
    }

    .showcase-inner {
        min-height:
            calc(100vh - 60px);

        padding:
            20px
            0
            50px;

        overflow: visible;
    }

    .showcase-head {
        max-width:
            calc(100vw - 28px);

        align-items: flex-start;

        margin-bottom: 24px;
    }

    .screens {
        width: 100%;

        max-width: 100%;

        column-count: 2;

        gap: 7px;
    }

    .shot {
        margin-bottom: 7px;

        border-radius: 8px;
    }

    .shot:hover {
        transform: none;

        box-shadow: none;
    }

    .shot:hover img,
    .shot:hover video {
        transform: none;
    }

    .empty-screens {
        width: 100%;

        padding:
            30px
            10px;

        text-align: center;

        column-span: all;
    }

    .link-preview {
        width: 225px;
    }

    .lightbox {
        padding: 20px;
    }
}


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

@media (max-width: 480px) {

    .page-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .showcase {
        padding-left: 10px;
        padding-right: 10px;
    }

    .showcase-inner {
        padding-top: 15px;
    }

    .screens {
        width: 100%;

        max-width: 100%;

        column-count: 2;

        gap: 5px;
    }

    .shot {
        margin-bottom: 5px;

        border-radius: 7px;
    }

    .showcase-head {
        gap: 12px;
    }

    .group-icon-wrap {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        border-radius: 12px;
    }

    .showcase-copy h1 {
        font-size: 15px;
    }

    .showcase-copy p {
        font-size: 11px;
    }
}


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

@media (max-width: 380px) {

    .job {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 9px;
    }

    .job-group-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        border-radius: 10px;
    }

    .screens {
        column-count: 2;
    }
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

html {
    scrollbar-color: #f1cbd6 transparent;
}

::-webkit-scrollbar-thumb {
    background: #f1cbd6;
}

