/* ==========================================================================
   Hanjosi - shared stylesheet (light theme)
   Linked by every page. Edit once, changes everywhere.

   PALETTE
   Background      #FCF7F5   paper
   Text            #473D41   ink
   Main accent     #FF3B89   pink
   Second accent   #1AE8D3   teal
   Third accent    #FFD4F1   blush, used only for lines, dividers and outlines

   The variable names are kept from the previous dark version so the inline
   styles in the HTML keep working. Only the values changed.
   ========================================================================== */

:root {
    /* surfaces */
    --ink:        #fcf7f5;   /* page background */
    --ink-raised: #ffffff;   /* cards, header, footer */
    --ink-card:   #ffffff;   /* hero panel */
    --ink-sunk:   #fdf3f8;   /* faint blush wash */

    /* lines: the third accent does the outlining work */
    --line:       #ffd4f1;
    --line-soft:  #f6e4ee;

    /* text */
    --text:       #473d41;
    --text-soft:  #5f5459;
    --text-mute:  #6e6367;
    --text-faint: #7a6e72;

    /* accents
       --pink is the brand accent: borders, fills, headings, large numbers.
       --pink-ink is the same pink darkened until small text passes contrast
       on white. Use it for links, small labels and solid button fills. */
    --pink:       #ff3b89;
    --pink-ink:   #c7145e;
    --pink-deep:  #a80c4d;
    --teal:       #1ae8d3;
    --teal-ink:   #0e8578;   /* teal darkened enough to read as text */
    --blush:      #ffd4f1;

    --shadow-sm: 0 2px 8px rgba(71, 61, 65, 0.06);
    --shadow-md: 0 6px 20px rgba(71, 61, 65, 0.09);
    --shadow-pink: 0 6px 20px rgba(255, 59, 137, 0.22);

    --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

    --wrap: 1250px;
    --radius: 0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🌱</text></svg>') 8 8, auto;
}

a, button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">✨</text></svg>') 8 8, pointer;
}

h1, h2, h3, .stat-number, .brand {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
    border-radius: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--pink-ink);
    color: #fff;
    padding: 10px 16px;
    z-index: 2000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ==========================================================================
   HEADER: utility strip (socials) + main nav
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ink-raised);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.utility-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 40px;
    border-bottom: 1px solid var(--line);
    background: var(--ink-sunk);
}

.social-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
}

.social-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.social-strip a:hover,
.social-strip a:focus-visible { opacity: 1; transform: translateY(-2px); }

.social-strip img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
    display: block;
}

.social-strip a:hover img {
    filter: brightness(0) drop-shadow(0 0 6px rgba(255, 59, 137, 0.7));
}

.utility-status {
    font-size: 0.75em;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 232, 211, 0.25);
    flex-shrink: 0;
}

.utility-status a { color: var(--pink-ink); text-decoration: none; font-weight: 600; }
.utility-status a:hover { text-decoration: underline; }

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25em;
    color: var(--text);
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 212, 241, 0.7);
}

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover { color: var(--pink-ink); }

.nav-links a.active { color: var(--pink-ink); font-weight: 600; }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--pink);
}

.nav-links a.nav-cta {
    border: 1px solid var(--pink-ink);
    border-radius: 0;
    padding: 6px 16px;
    color: var(--pink-ink);
    font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--pink-ink); border-color: var(--pink-ink); color: #fff; }
.nav-links a.nav-cta.active { background: var(--pink-ink); border-color: var(--pink-ink); color: #fff; }
.nav-links a.nav-cta.active::after { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}
.hamburger span { width: 25px; height: 2px; background: var(--text); display: block; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container { max-width: var(--wrap); margin: 0 auto; padding: 50px 20px; }
.container-tight { max-width: 860px; }

.page-header { margin-bottom: 44px; }
.page-header h1 { font-size: 2.4em; font-weight: 700; margin-bottom: 12px; }
.page-header h1 span { color: var(--pink); }
.page-header p { color: var(--text-mute); font-size: 1em; max-width: 680px; }

.section { margin-bottom: 64px; }

.section-title {
    font-size: 0.95em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
}

.section-divider { margin: 60px 0; border: none; border-top: 2px solid var(--line); }

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

.cta-button {
    display: inline-block;
    padding: 13px 28px;
    background: var(--pink-ink);
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85em;
    border: 1px solid var(--pink-ink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.cta-button:hover {
    background: var(--pink-deep);
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}

.cta-button-outline {
    display: inline-block;
    padding: 13px 28px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85em;
    border: 2px solid var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    transition: background 0.25s, transform 0.25s, color 0.25s, border-color 0.25s;
}

.cta-button-outline:hover {
    background: var(--text);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   EMOTE MARQUEE
   ========================================================================== */

.work-banner {
    width: 100%;
    height: 110px;
    overflow: hidden;
    position: relative;
    background: var(--ink-sunk);
    border: 1px solid var(--line);
    border-bottom: none;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.work-banner-track {
    display: flex;
    gap: 20px;
    animation: scroll 60s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-110px * 13 - 20px * 13)); }
}

.work-item {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 0;
    overflow: hidden;
}

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

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

.hero {
    display: flex;
    gap: 44px;
    align-items: center;
    background: var(--ink-card);
    padding: 44px;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.hero-portrait { flex: 0 0 260px; display: flex; justify-content: center; }

.hero-portrait img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px solid var(--pink);
    animation: glow-pulse 6s ease-in-out infinite;
    display: block;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 7px rgba(255, 212, 241, 0.9), 0 0 0 11px rgba(255, 59, 137, 0.16); }
    50%      { box-shadow: 0 0 0 7px rgba(26, 232, 211, 0.35), 0 0 0 11px rgba(26, 232, 211, 0.16); }
}

.hero-body { flex: 1; min-width: 0; }

.hero-body h1 { font-size: 2.9em; font-weight: 700; margin-bottom: 6px; }

.hero-tagline {
    font-size: 1.05em;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 18px;
}

.pronoun-badge {
    display: inline-block;
    padding: 3px 9px;
    background: var(--blush);
    border: 1px solid var(--pink);
    border-radius: 0;
    font-size: 0.3em;
    font-weight: 600;
    color: var(--pink-deep);
    margin-left: 10px;
    vertical-align: middle;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.follower-stats-section { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.follower-stat-item {
    background: var(--ink-sunk);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 10px 18px;
    text-align: center;
}

.follower-stat-number {
    font-family: var(--font-display);
    font-size: 1.45em;
    font-weight: 700;
    color: var(--pink);
    display: block;
    line-height: 1.2;
}

.follower-stat-label {
    font-size: 0.72em;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-body p.bio { color: var(--text-soft); line-height: 1.75; margin-bottom: 14px; font-size: 1em; }

.stats-and-clients-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    margin: 20px 0 24px;
}

.stats-section {
    display: flex;
    gap: 28px;
    padding: 18px 22px;
    background: var(--ink-sunk);
    border-radius: 0;
    border: 1px solid var(--line);
    max-width: fit-content;
}

.stat-item .stat-number-inline {
    font-family: var(--font-display);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--pink);
    display: block;
    line-height: 1.1;
}

.stat-item .stat-label { font-size: 0.8em; color: var(--text-mute); }

.clients-title {
    font-size: 0.75em;
    color: var(--text-mute);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
}

.client-logo { width: 92px; height: 46px; display: flex; align-items: center; justify-content: center; }

/* Logos run in full colour. Nothing is filtered, so a white or very pale
   wordmark will disappear against the paper background: give that one
   div the .on-dark class below and it gets a dark chip to sit on. */
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.client-logo.on-dark {
    background: var(--text);
    border-radius: 0;
    padding: 6px 10px;
    width: auto;
    min-width: 92px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .cta-button,
.hero-actions .cta-button-outline { flex: 1; min-width: 200px; }

/* ==========================================================================
   NEXT EVENT NOTE
   ========================================================================== */

/* ---- Commission status banner (home page) ------------------------------ */
.commission-status {
    margin: 0 0 26px;
    padding: 18px 22px;
    background: var(--ink-raised);
    border: 2px solid var(--pink);
    border-left: 6px solid var(--pink);
    border-radius: 0;
    box-shadow: var(--shadow-pink);
}

.commission-status-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 1.02em;
    line-height: 1.55;
    color: var(--text);
}

.commission-status-line + .commission-status-line {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.commission-status-line strong { font-weight: 700; }

.commission-status a {
    color: var(--pink-ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--blush);
}

.commission-status a:hover { border-bottom-color: var(--pink-ink); }

/* The red and green circles are real emoji, so they match the wording used in
   the Twitter, Discord and Instagram announcements. */
.status-emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1em;
    line-height: 1.55;
    flex-shrink: 0;
}

.next-event {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 14px 22px;
    background: var(--ink-sunk);
    border: 2px solid var(--line);
    border-left: 5px solid var(--pink);
    border-radius: 0;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.next-event:hover {
    border-color: var(--pink);
    border-left-color: var(--pink);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.next-event-label {
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-ink);
    white-space: nowrap;
}

.next-event-name {
    font-family: var(--font-display);
    font-size: 1em;
    font-weight: 700;
    color: var(--text);
}

.next-event-arrow {
    margin-left: auto;
    color: var(--pink-ink);
    font-size: 1.2em;
    transition: transform 0.25s;
}
.next-event:hover .next-event-arrow { transform: translateX(6px); }

/* ==========================================================================
   HIGHLIGHTS SLIDESHOW
   ========================================================================== */

.slideshow {
    position: relative;
    /* Width of the slideshow. The container is 1210px wide, so this sits at
       roughly half that and takes up about a quarter of the area it used to.
       Change this one number to resize: larger for more presence, smaller
       for less. Below about 480px the booth detail stops reading. */
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    background: var(--ink-sunk);
    box-shadow: var(--shadow-sm);
}

.slide-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slide.is-active { opacity: 1; }

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--pink-ink);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.slide-nav:hover { background: var(--pink-ink); color: #fff; border-color: var(--pink-ink); }
.slide-prev { left: 14px; }
.slide-next { right: 14px; }
.slide-prev:hover { transform: translateY(-50%) translateX(-2px); }
.slide-next:hover { transform: translateY(-50%) translateX(2px); }

.slide-dots {
    position: absolute;
    left: 0; right: 0; bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slide-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(71, 61, 65, 0.25);
    background: rgba(255, 255, 255, 0.85);
    transition: background 0.2s, transform 0.2s;
}
.slide-dot.is-active { background: var(--pink); border-color: var(--pink); transform: scale(1.25); }

.slideshow-caption {
    margin-top: 12px;
    font-size: 0.82em;
    color: var(--text-mute);
    text-align: center;
}

/* ==========================================================================
   WORK QUEUE BUTTON
   ========================================================================== */

.queue-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 30px 24px;
    margin-bottom: 44px;
    background: var(--ink-sunk);
    border: 2px solid var(--line);
    border-radius: 0;
}

.queue-block-inline { padding: 22px 24px; margin-bottom: 18px; }

.queue-eyebrow {
    font-size: 0.68em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-ink);
}

.queue-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--pink-ink);
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.queue-button:hover {
    background: var(--pink-deep);
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}

.queue-arrow { font-size: 0.9em; transition: transform 0.25s; }
.queue-button:hover .queue-arrow { transform: translate(2px, -2px); }

.queue-note { font-size: 0.78em; color: var(--text-mute); }

/* ==========================================================================
   CARD ICONS
   ========================================================================== */

/* Inline SVG, so the pink is exact and there is no extra network request.
   To swap in a flaticon PNG instead, replace the <svg> with:
       <img class="card-icon-img" src="https://cdn-icons-png.flaticon.com/..." alt="">
   The filter below tints a black PNG to #FF3B89. */
.card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--blush);
    border: 1px solid rgba(255, 59, 137, 0.28);
    margin-bottom: 4px;
}

.card-icon { width: 24px; height: 24px; color: var(--pink-ink); display: block; }

.card-icon-img {
    width: 24px;
    height: 24px;
    display: block;
    filter: invert(33%) sepia(100%) saturate(300%) hue-rotate(287deg) brightness(117%) contrast(184%);
}

/* ==========================================================================
   AVAILABILITY LANES
   ========================================================================== */

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.lane {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.lane-primary {
    border: 2px solid var(--pink);
    background: linear-gradient(160deg, var(--ink-sunk) 0%, #ffffff 55%);
}

.lane-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-mute);
}

.lane-status .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-open { background: var(--teal); box-shadow: 0 0 0 3px rgba(26, 232, 211, 0.3); }
.dot-wait { background: #f0a02a; box-shadow: 0 0 0 3px rgba(240, 160, 42, 0.25); }

.lane h3 { font-size: 1.15em; font-weight: 700; }
.lane p { font-size: 0.9em; color: var(--text-mute); line-height: 1.7; }
.lane ul { list-style: none; font-size: 0.88em; color: var(--text-mute); }
.lane ul li { padding: 3px 0 3px 18px; position: relative; }
.lane ul li::before { content: "↳"; position: absolute; left: 0; color: var(--pink); }
.lane .lane-foot { margin-top: auto; padding-top: 6px; }
.lane a.lane-link { color: var(--pink-ink); text-decoration: none; font-size: 0.9em; font-weight: 700; }
.lane a.lane-link:hover { text-decoration: underline; }

/* ==========================================================================
   DOOR CARDS (where to go next)
   ========================================================================== */

.doors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.door {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 24px 26px;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.door:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.door-eyebrow { font-size: 0.68em; text-transform: uppercase; letter-spacing: 2px; color: var(--pink-ink); font-weight: 700; }
.door h3 { font-size: 1.05em; font-weight: 700; }
.door p { font-size: 0.85em; color: var(--text-mute); line-height: 1.6; }
.door-arrow { color: var(--pink); font-size: 1.2em; margin-top: 4px; transition: transform 0.25s; }
.door:hover .door-arrow { transform: translateX(6px); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.review-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-left: 4px solid var(--blush);
    border-radius: 0;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: border-left-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-left-color: var(--pink); box-shadow: var(--shadow-md); }

.review-quote { font-size: 0.9em; color: var(--text-soft); line-height: 1.8; font-style: italic; flex: 1; }
.review-quote::before { content: "\201C"; color: var(--pink); font-size: 1.4em; font-style: normal; }
.review-author { border-top: 1px solid var(--line); padding-top: 12px; }
.review-name { font-size: 0.88em; font-weight: 700; }
.review-role { font-size: 0.78em; color: var(--text-mute); margin-top: 2px; }
.review-stars { font-size: 0.85em; color: var(--pink); letter-spacing: 2px; }

/* ==========================================================================
   PORTFOLIO GRID + LIGHTBOX
   ========================================================================== */

.portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }

.portfolio-item {
    grid-column: span 2;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--ink-raised);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink); }
.portfolio-item-landscape { grid-column: span 3; }

.portfolio-item button {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
}

.portfolio-item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.portfolio-item-landscape img { aspect-ratio: 3 / 2; }

.portfolio-item figcaption { padding: 12px 14px 14px; text-align: left; border-top: 1px solid var(--line); }
.portfolio-caption-title { font-size: 0.85em; font-weight: 700; color: var(--text); display: block; }
.portfolio-caption-meta { font-size: 0.75em; color: var(--text-mute); display: block; margin-top: 2px; }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(71, 61, 65, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 0; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.lightbox-close {
    position: absolute;
    top: 24px; right: 30px;
    font-size: 38px;
    color: #fff;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { color: var(--blush); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: 2px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95em;
    font-weight: 600;
    text-align: left;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--pink); }
.faq-icon { font-size: 1.3em; font-weight: 400; color: var(--pink); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-question.open { color: var(--pink); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; color: var(--text-mute); font-size: 0.9em; line-height: 1.8; max-width: 720px; }
.faq-answer.open { display: block; }
.faq-answer a { color: var(--pink-ink); text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ==========================================================================
   CLIENT WORK PAGE
   ========================================================================== */

.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
    padding: 7px 18px;
    border-radius: 0;
    border: 1px solid var(--line);
    background: var(--ink-raised);
    color: var(--text-mute);
    font-size: 0.85em;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--pink); color: var(--pink); }
.filter-tab.active { border-color: var(--pink-ink); background: var(--pink-ink); color: #fff; }

.year-group { margin-bottom: 44px; }
.year-label {
    font-family: var(--font-display);
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--line);
}

.credit-row {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.2s;
}
.credit-row:hover { background: var(--ink-sunk); }

.credit-client { font-weight: 600; font-size: 0.95em; padding-top: 2px; }
.credit-client a { color: var(--text); text-decoration: none; }
.credit-client a:hover { color: var(--pink); }

.credit-description { color: var(--text-mute); font-size: 0.88em; line-height: 1.6; }
.credit-description ul { list-style: none; padding: 0; }
.credit-description ul li { padding: 2px 0; }
.credit-description ul li::before { content: "↳ "; color: var(--text-faint); }
.credit-description a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.credit-description a:hover { color: var(--pink); }

.credit-tag { display: inline-block; padding: 3px 10px; border-radius: 0; font-size: 0.75em; font-weight: 700; white-space: nowrap; margin-top: 3px; }
.tag-game    { background: rgba(255, 59, 137, 0.10); color: var(--pink-ink); border: 1px solid rgba(255, 59, 137, 0.35); }
.tag-esports { background: rgba(26, 232, 211, 0.16); color: var(--teal-ink); border: 1px solid rgba(26, 232, 211, 0.55); }
.tag-brand   { background: rgba(90, 140, 255, 0.10); color: #3a5fc0; border: 1px solid rgba(90, 140, 255, 0.32); }
.tag-content { background: rgba(255, 150, 40, 0.12); color: #b56a10; border: 1px solid rgba(255, 150, 40, 0.35); }
.tag-collab  { background: rgba(160, 90, 255, 0.10); color: #7b3fc4; border: 1px solid rgba(160, 90, 255, 0.30); }

.stats-banner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.stat-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }
.stat-number { font-size: 1.8em; font-weight: 700; color: var(--pink); line-height: 1.1; }
.stat-label { font-size: 0.8em; color: var(--text-mute); margin-top: 4px; }

.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.program-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-top: 3px solid var(--blush);
    border-radius: 0;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    transition: border-top-color 0.3s, box-shadow 0.3s;
}
.program-card:hover { border-top-color: var(--pink); box-shadow: var(--shadow-md); }
.program-card h3 { font-size: 0.95em; font-weight: 700; margin-bottom: 4px; }
.program-card p { font-size: 0.82em; color: var(--text-mute); }

.collab-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.collab-card:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }
.collab-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.collab-title { font-weight: 700; font-size: 1em; }
.collab-date { font-size: 0.8em; color: var(--text-mute); }
.collab-deliverables { font-size: 0.85em; color: var(--text-mute); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.collab-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.collab-platform-name { font-size: 0.72em; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 6px; font-weight: 700; }
.collab-metric { font-size: 0.82em; color: var(--text-soft); }
.collab-metric span { color: var(--pink-ink); font-weight: 700; }
.collab-link { font-size: 0.8em; color: var(--text-mute); text-decoration: none; }
.collab-link:hover { color: var(--pink); }

/* ==========================================================================
   EVENTS PAGE
   ========================================================================== */

.event-card {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 24px;
    align-items: start;
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-left: 4px solid var(--pink);
    border-radius: 0;
    padding: 24px 28px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card.past { border-left-color: var(--blush); background: var(--ink-sunk); }

.event-date {
    font-family: var(--font-display);
    font-size: 0.82em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pink);
    padding-top: 3px;
}
.event-date .event-year { display: block; color: var(--text-mute); font-weight: 400; letter-spacing: 1px; }

.event-name { font-size: 1.05em; font-weight: 700; margin-bottom: 4px; }
.event-venue { font-size: 0.85em; color: var(--text-mute); }
.event-detail { font-size: 0.85em; color: var(--text-mute); margin-top: 8px; line-height: 1.65; }
.event-detail a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.event-detail a:hover { color: var(--pink); }

.event-badge { display: inline-block; padding: 4px 12px; border-radius: 0; font-size: 0.72em; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.badge-confirmed { background: rgba(26, 232, 211, 0.18); color: var(--teal-ink); border: 1px solid rgba(26, 232, 211, 0.55); }
.badge-past { background: var(--blush); color: var(--text-mute); border: 1px solid var(--line); }

.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.merch-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.merch-card:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }
.merch-card h3 { font-size: 0.98em; font-weight: 700; margin-bottom: 6px; }
.merch-card p { font-size: 0.85em; color: var(--text-mute); line-height: 1.6; }

/* Lead times by region, on the events page */
.notice-list { display: flex; flex-direction: column; gap: 2px; }

.notice-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}
.notice-row:last-child { border-bottom: none; }

.notice-region { font-size: 0.88em; font-weight: 700; color: var(--text); }
.notice-window { font-size: 0.82em; color: var(--pink-ink); font-weight: 600; text-align: right; }

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */

.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }

.shop-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blush);
    border-radius: 0;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: border-top-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.shop-card:hover { border-top-color: var(--pink); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.shop-card h3 { font-size: 1.15em; font-weight: 700; }
.shop-card p { font-size: 0.9em; color: var(--text-mute); line-height: 1.7; }
.shop-card ul { list-style: none; font-size: 0.87em; color: var(--text-mute); }
.shop-card ul li { padding: 4px 0 4px 20px; position: relative; }
.shop-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-ink); font-weight: 700; }
.shop-card .shop-foot { margin-top: auto; padding-top: 10px; }

.shop-price { font-family: var(--font-display); font-size: 0.9em; color: var(--pink); font-weight: 700; }

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

.route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }

.route-card {
    background: var(--ink-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.route-card:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.route-card.route-priority { border: 2px solid var(--pink); background: linear-gradient(160deg, var(--ink-sunk) 0%, #ffffff 55%); }
.route-card h3 { font-size: 1.1em; font-weight: 700; }
.route-card p { font-size: 0.88em; color: var(--text-mute); line-height: 1.7; }
.route-meta { font-size: 0.78em; color: var(--text-mute); border-top: 1px solid var(--line); padding-top: 10px; margin-top: auto; }
.route-meta strong { color: var(--text); font-weight: 700; }

.form-block { background: var(--ink-raised); border: 1px solid var(--line); border-radius: 0; padding: 30px 32px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.82em; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mute); margin-bottom: 7px; font-weight: 700; }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-family: inherit;
    font-size: 0.92em;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-faint); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--pink); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(255, 59, 137, 0.12); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8em; color: var(--text-faint); margin-top: 6px; }

.email-block {
    background: var(--ink-sunk);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 16px 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.email-block a { color: var(--pink-ink); text-decoration: none; word-break: break-all; font-weight: 600; }

.copy-btn {
    padding: 9px 20px;
    background: var(--pink-ink);
    color: #fff;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.copy-btn:hover { background: var(--pink-deep); }

/* ==========================================================================
   CTA PANEL
   ========================================================================== */

.cta-section {
    background: var(--ink-sunk);
    border: 2px solid var(--line);
    border-radius: 0;
    padding: 40px;
    text-align: center;
}
.cta-section h2 { font-size: 1.4em; font-weight: 700; margin-bottom: 10px; }
.cta-section p { color: var(--text-mute); margin-bottom: 24px; font-size: 0.95em; max-width: 620px; margin-left: auto; margin-right: auto; }

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

.site-footer { background: var(--ink-raised); border-top: 2px solid var(--line); margin-top: 60px; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 44px 20px 30px; }

.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.1em; font-family: var(--font-display); }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--pink); }
.footer-blurb { font-size: 0.85em; color: var(--text-mute); line-height: 1.75; max-width: 340px; }

.footer-col h4 { font-size: 0.72em; text-transform: uppercase; letter-spacing: 2px; color: var(--text-faint); margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-mute); text-decoration: none; font-size: 0.88em; }
.footer-col a:hover { color: var(--pink); }

.footer-social { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-social a { opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }
.footer-social img { width: 24px; height: 24px; filter: brightness(0); display: block; }

.footer-base { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78em; color: var(--text-mute); }
.footer-base a { color: var(--pink-ink); text-decoration: none; }
.footer-base a:hover { text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .utility-bar, .main-nav { padding-left: 24px; padding-right: 24px; }
    .hero { flex-direction: column; padding: 34px 28px; gap: 28px; }
    .hero-portrait { flex: 0 0 auto; }
    .hero-portrait img { width: 220px; height: 220px; }
    .hero-body h1 { font-size: 2.3em; }
    .stats-and-clients-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .stats-section { max-width: 100%; justify-content: center; }
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 32px 16px; }

    .utility-bar { padding: 8px 16px; gap: 10px; }
    .utility-status { font-size: 0.68em; }
    .social-strip { gap: 12px; }
    .social-strip img { width: 18px; height: 18px; }

    .main-nav { padding: 12px 16px; position: relative; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        background: var(--ink-raised);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 14px 18px;
        border: 1px solid var(--line);
        border-radius: 0;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 9px 0; width: 100%; }
    .nav-links a.active::after { display: none; }
    .nav-links a.nav-cta { margin-top: 6px; }

    .page-header h1 { font-size: 1.8em; }
    .hero-body h1 { font-size: 2em; }
    .hero-portrait img { width: 170px; height: 170px; }
    .hero-actions .cta-button,
    .hero-actions .cta-button-outline { min-width: 100%; font-size: 0.75em; padding: 12px 14px; }

    .work-banner { height: 80px; }
    .work-item { width: 80px; height: 80px; }
    @keyframes scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(calc(-80px * 13 - 20px * 13)); }
    }

    .stats-section { flex-direction: column; gap: 14px; width: 100%; max-width: 100%; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .client-logo { width: 72px; height: 36px; }

    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .portfolio-item, .portfolio-item-landscape { grid-column: span 1; }

    .credit-row { grid-template-columns: 1fr; gap: 6px; }
    .credit-tag { justify-self: start; }
    .collab-stats { flex-direction: column; gap: 14px; }
    .cta-section { padding: 26px 20px; }

    .event-card { grid-template-columns: 1fr; gap: 10px; padding: 20px 22px; }
    .event-badge { justify-self: start; }

    .slide-nav { width: 34px; height: 34px; font-size: 20px; }
    .slide-prev { left: 8px; }
    .slide-next { right: 8px; }
    .slide-stage { aspect-ratio: 4 / 3; }
    .queue-block { padding: 22px 18px; }
    .queue-button { width: 100%; justify-content: center; font-size: 0.88em; padding: 13px 20px; }

    .next-event { gap: 6px; padding: 14px 18px; }
    .next-event-label { width: 100%; }
    .next-event-name { font-size: 0.92em; }
    .next-event-arrow { margin-left: 0; }

    .footer-cols { grid-template-columns: 1fr; gap: 26px; }
    .form-block { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .work-banner-track { animation: none; }
    .hero-portrait img { animation: none; }
    .slide { transition: none; }
}
