/* ============ FONTS ============ */

/* Chinchilla — Brand / display font */
@font-face {
    font-family: 'Chinchilla';
    src: url('fonts/Chinchilla-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Signika — Body font */
@font-face {
    font-family: 'Signika';
    src: url('fonts/Signika-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Signika';
    src: url('fonts/Signika-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Signika';
    src: url('fonts/Signika-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Signika';
    src: url('fonts/Signika-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Signika';
    src: url('fonts/Signika-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============ CUSTOM PROPERTIES ============ */
:root {
    /* PET Brand Colors */
    --navy: #101e44;
    --navy-light: #1a2d5a;
    --azure: #0095ff;
    --sky-blue: #05bbf7;
    --iceberg: #d8efff;
    --iceberg-pale: #edf7ff;

    /* Warm accents */
    --peach: #fbd8c1;
    --tangerine: #f5a58e;
    --flamingo: #f2a7aa;
    --valentine: #f0544f;

    /* Neutrals */
    --white: #FAFBFD;
    --off-white: #F2F5F9;
    --light-grey: #E1E6ED;
    --mid-grey: #9BA5B5;
    --dark-grey: #5E6A7A;
    --near-black: #0C1425;

    /* Functional */
    --accent: var(--azure);
    --accent-hover: #0078d4;
    --accent-light: var(--iceberg-pale);
    --cta: var(--valentine);
    --cta-hover: #d94440;

    /* Typography */
    --font-body: 'Signika', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-brand: 'Chinchilla', cursive;

    /* Layout */
    --max-width: 1120px;
    --section-gap: 60px;
}

/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ SHARED: SECTION CONTAINER ============ */
/* Reusable pattern for major content sections */
.positioning,
.featured-work,
.other-work,
.about {
    padding: 0 40px;
    max-width: var(--max-width);
    margin: 0 auto var(--section-gap);
}

/* ============ SHARED: MONO LABEL ============ */
/* Reusable monospace uppercase label used across many components */
.mono-label,
.hero-label,
.case-study-domain,
.section-count,
.other-work-type,
.about-timeline h4,
.tools-row h4 {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--cta);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(240, 84, 79, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    border: 1.5px solid var(--light-grey);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--azure);
    color: var(--azure);
    background: var(--iceberg-pale);
}

.btn-case-study {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-read {
    background: var(--cta);
    color: var(--white);
    border: none;
}

.btn-read:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(240, 84, 79, 0.25);
}

.btn-contact-primary {
    padding: 14px 32px;
    background: var(--cta);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-contact-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(240, 84, 79, 0.3);
}

.btn-contact-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--iceberg);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    border-radius: 10px;
    border: 1.5px solid rgba(216, 239, 255, 0.15);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contact-secondary:hover {
    border-color: rgba(216, 239, 255, 0.35);
    background: rgba(216, 239, 255, 0.05);
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 251, 253, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

nav.scrolled {
    border-bottom-color: var(--light-grey);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
}

.nav-logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--navy);
}

.nav-logo-text span {
    color: var(--valentine);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    background: var(--navy);
    padding: 12px 22px;
    border-radius: 8px;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--cta) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
    padding: 160px 40px 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-label {
    font-size: 12px;
    color: var(--azure);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--azure);
    border-radius: 1px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.hero-name-highlight {
    position: relative;
    display: inline;
    color: var(--valentine);
    font-family: var(--font-brand);
    font-size: clamp(44px, 6vw, 65px);
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.65;
    color: var(--navy-light);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* Hero Avatar - desktop (right side) */
.hero-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero mobile avatar - hidden on desktop, shown on mobile */
.hero-avatar-mobile {
    display: none;
}

.hero-avatar svg {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 8px 32px rgba(5, 187, 247, 0.15));
    transition: transform 0.3s ease;
}

.hero-avatar svg:hover {
    transform: scale(1.03) rotate(2deg);
}

/* Hero Video */
.hero-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 16/9;
    width: 100%;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}

.play-button {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(240, 84, 79, 0.3);
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(240, 84, 79, 0.4);
    background: var(--cta-hover);
}

.play-button svg {
    width: 22px;
    height: 22px;
    fill: white;
    margin-left: 3px;
}

.hero-video-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--iceberg);
}

.hero-video-duration {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--mid-grey);
}

/* ============ POSITIONING / WHAT I DO ============ */
.positioning-text {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
    color: var(--navy-light);
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 28px;
}

.positioning-text strong {
    font-weight: 700;
    color: var(--navy);
}

.positioning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.positioning-tools {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--dark-grey);
    margin-top: 16px;
    line-height: 1.8;
}

.tag {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--iceberg-pale);
    color: var(--navy);
    border: 1px solid var(--iceberg);
}

/* ============ SECTION HEADERS ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 0px;
    border-bottom: 2px solid var(--iceberg);
}

.section-title {
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.section-count {
    font-size: 12px;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
}

/* ============ FEATURED WORK ============ */
.case-study-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--light-grey);
    background: var(--white);
    transition: all 0.3s ease;
}



.case-study-card::before {
    display: none;
}

.case-study-visual {
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.case-study-visual.accent-1 {
    background: linear-gradient(135deg, var(--iceberg-pale) 0%, var(--iceberg) 100%);
}

.case-study-visual.accent-2 {
    background: linear-gradient(135deg, #fef5ef 0%, var(--peach) 100%);
}

.case-study-visual.accent-3 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.case-study-visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--mid-grey);
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-content {
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-domain {
    font-size: 11px;
    color: var(--azure);
    margin-bottom: 16px;
}

.case-study-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.case-study-problem {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy-light);
    margin-bottom: 32px;
    font-weight: 400;
}

.case-study-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--light-grey);
}

.case-study-readif {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: var(--mid-grey);
    margin-bottom: 20px;
}

/* ============ OTHER WORK ============ */
.other-work-list {
    border: 1px solid var(--light-grey);
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
}

.other-work-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 36px;
}

.other-work-row+.other-work-row {
    border-top: 1px solid var(--light-grey);
}

.other-work-thumb {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    flex-shrink: 0;
}

.other-work-thumb.thumb-1 {
    background: linear-gradient(135deg, #dff0e8 0%, #c8e6d4 100%);
}

.other-work-thumb.thumb-2 {
    background: linear-gradient(135deg, #fef5ef 0%, var(--peach) 100%);
}

.other-work-thumb.thumb-3 {
    background: linear-gradient(135deg, var(--iceberg-pale) 0%, var(--iceberg) 100%);
}

.other-work-thumb.thumb-4 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.other-work-info {
    min-width: 0;
}

.other-work-type {
    font-size: 10px;
    color: var(--azure);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.other-work-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy);
}

.other-work-desc {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.about-photo {
    border-radius: 12px;
    aspect-ratio: 3/4;
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.about-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
}

.about-text h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--navy-light);
    margin-bottom: 20px;
}

/* Shared styles for about-timeline and tools-row dividers */
.about-timeline,
.tools-row {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--iceberg);
}

.about-timeline h4,
.tools-row h4 {
    font-size: 11px;
    color: var(--azure);
    margin-bottom: 24px;
}

.tools-row h4 {
    margin-bottom: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 10px 0;
    font-size: 14px;
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--mid-grey);
}

.timeline-desc {
    color: var(--dark-grey);
}

.timeline-desc strong {
    color: var(--navy);
    font-weight: 700;
}

/* ============ TOOLS ============ */
.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


/* ============ RESUME PAGE ============ */
.page-resume {
    font-weight: 300;
}

.resume-header {
    padding: 160px 40px 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.resume-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.resume-header-info {
    display: flex;
    align-items: center;
    gap: 0px;
}

.resume-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resume-header-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.resume-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-10deg);
}

.resume-name {
    font-family: var(--font-body);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.resume-name-highlight {
    font-family: var(--font-brand);
    font-weight: 400;
    color: var(--valentine);
    letter-spacing: 1px;
}

.resume-role {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-grey);
}

.resume-download-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.resume-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--iceberg);
}

.resume-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s;
}

a.resume-contact-item:hover {
    color: var(--azure);
}

.resume-contact-item svg {
    flex-shrink: 0;
    color: var(--azure);
}

.resume-link-brand {
    color: var(--valentine);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    line-height: 1;
    display: inline-block;
}

.resume-link-brand:hover {
    color: var(--cta-hover);
}

/* Resume Section (shared for all resume content blocks) */
.resume-section {
    padding: 0 40px;
    max-width: var(--max-width);
    margin: 0 auto 20px;
}

.resume-section:first-of-type {
    margin-top: var(--section-gap);
}

.resume-section .section-header {
    margin-bottom: 10px;
}

.resume-section-last {
    margin-bottom: 20px;
}

/* Background / Summary */
.resume-background-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 960px;
}

.resume-summary {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
    color: var(--navy-light);
    font-weight: 400;
    flex: 1;
    margin-bottom: 4px;
}

.resume-summary:last-child {
    margin-bottom: 0;
}

.resume-background-image {
    flex-shrink: 0;
    width: 120px;
    padding-top: 4px;
}

.resume-background-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(10deg);
}

/* Job Entries */
.resume-job {
    padding: 10px 0 40px 0;
    border-bottom: 1px solid var(--light-grey);
}

.resume-job:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resume-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.resume-job-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.resume-job-company {
    font-size: 14px;
    color: var(--azure);
    margin-top: 4px;
    font-weight: 500;
}

.resume-job-date {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-top: 4px;
}

.resume-job-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resume-job-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy-light);
}

.resume-job-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--iceberg);
    border: 1.5px solid var(--azure);
}

/* Job Description (non-bullet, visually matches bullets) */
.resume-job-desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy-light);
    margin: 0 0 10px 0;
}

.resume-job-desc-last {
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy-light);
    margin: 10px 0 10px 0;
}

/* Case Study Link (inline CTA within a job entry) */
.resume-case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--valentine);
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.2s, gap 0.2s;
}

.resume-case-study-link svg {
    transition: transform 0.2s;
}

.resume-case-study-link:hover {
    color: var(--cta-hover);
    gap: 10px;
}

.resume-case-study-link:hover svg {
    transform: translateX(2px);
}

/* Skills Grid */
.resume-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.resume-skill-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resume-skill-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--azure);
}

.resume-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Education */
.resume-education-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.resume-education-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--light-grey);
}

.resume-education-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resume-education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.resume-education-degree {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.resume-education-school {
    font-size: 14px;
    color: var(--azure);
    margin-top: 4px;
    font-weight: 500;
}

.resume-education-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--navy-light);
    margin-top: 12px;
    max-width: 700px;
}

/* Highlights */
.resume-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resume-highlights-list li {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--navy-light);
}

.resume-highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--peach);
    border: 1.5px solid var(--tangerine);
}

.resume-highlights-list strong {
    color: var(--navy);
    font-weight: 700;
}

.resume-highlights-list a {
    color: var(--azure);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0, 149, 255, 0.3);
    transition: all 0.2s;
}

.resume-highlights-list a:hover {
    color: var(--accent-hover);
    text-decoration-color: var(--accent-hover);
}

/* Languages */
.resume-languages {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.resume-language-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resume-language-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.resume-language-level {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ CONTACT ============ */
.contact {
    padding: 80px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-resume .contact {
    padding-top: 40px;
}

.contact-inner {
    background: var(--navy);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient orbs */
.contact-inner::before,
.contact-inner::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.contact-inner::before {
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 149, 255, 0.08) 0%, transparent 70%);
}

.contact-inner::after {
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 165, 142, 0.06) 0%, transparent 70%);
}

.contact-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.contact-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.contact-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============ FOOTER ============ */
footer {
    padding: 32px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--mid-grey);
}

footer a {
    color: var(--dark-grey);
    text-decoration: none;
}

footer a:hover {
    color: var(--azure);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ BOTTOM NAV (Mobile) ============ */
.bottom-nav {
    display: none;
}

/* ============ RESPONSIVE ============ */

/* -- Tablet -- */
@media (max-width: 1024px) {
    .hero-top {
        grid-template-columns: 1fr 240px;
        gap: 32px;
    }

    .hero-avatar img {
        width: 280px;
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 240px 1fr;
        gap: 48px;
    }

    .case-study-content {
        padding: 36px 40px;
    }
}

/* -- Mobile -- */
@media (max-width: 640px) {

    body {
        padding-bottom: 72px;
    }

    /* -- Bottom Navigation -- */
    .bottom-nav {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom: none;
        z-index: 100;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        background: rgba(250, 251, 253, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--light-grey);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        color: var(--dark-grey);
        font-size: 11px;
        font-weight: 500;
        font-family: var(--font-body);
        padding: 8px 16px;
        border-radius: 8px;
        transition: color 0.2s;
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
    }

    .bottom-nav-item:active,
    .bottom-nav-item.active {
        color: var(--azure);
    }

    .bottom-nav-cta {
        color: var(--cta);
    }

    .bottom-nav-cta.active {
        color: var(--cta);
    }

    /* -- Top nav simplified -- */
    .nav-links {
        display: none;
    }

    /* -- Consistent mobile horizontal padding for all sections -- */
    .hero {
        gap: 40px;
        padding: 120px 20px 60px;
    }

    .positioning,
    .featured-work,
    .other-work,
    .about {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-avatar {
        display: none !important;
    }

    .hero-avatar-mobile {
        display: block !important;
        flex-shrink: 0;
        width: 72px;
        height: 72px;
    }

    .hero-avatar-mobile svg {
        width: 72px;
        height: 72px;
    }

    .hero-title-wrap {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-video {
        aspect-ratio: 16/9;
    }



    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .case-study-card {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .case-study-visual {
        min-height: 40px;
    }

    .case-study-content {
        padding: 24px;
    }

    .other-work-row {
        gap: 20px;
        padding: 24px 24px;
    }

    .other-work-thumb {
        width: 72px;
        height: 72px;
    }

    .other-work-title {
        font-size: 15px;
    }

    .other-work-desc {
        font-size: 13px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo {
        position: static;
        max-width: 220px;
        max-height: none;
        margin: 0 auto;
    }

    nav {
        padding: 16px 20px;
    }



    .section-header {
        flex-direction: column;
        gap: 4px;
    }

    .contact-inner {
        padding: 36px 24px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-actions a {
        width: 100%;
        justify-content: center;
    }

    /* Resume page mobile */
    .resume-header {
        padding: 120px 20px 0;
    }

    .resume-header-top {
        flex-direction: column;
        gap: 20px;
    }

    .resume-header-info {
        width: 100%;
        gap: 16px;
    }

    .resume-header-image {
        width: 80px;
        height: 80px;
    }

    .resume-download-btn {
        width: 100%;
        justify-content: center;
    }

    .resume-contact-row {
        flex-direction: column;
        gap: 14px;
    }

    .resume-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .resume-background-container {
        flex-direction: column;
        gap: 20px;
    }

    .resume-background-image {
        width: 100px;
        margin-top: 10px;
        align-self: center;
    }

    .resume-job-header {
        flex-direction: column;
        gap: 4px;
    }

    .resume-job-date {
        padding-top: 0;
    }

    .resume-skills-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .resume-education-header {
        flex-direction: column;
        gap: 4px;
    }

    .resume-languages {
        gap: 32px;
    }
}

@media (max-width: 420px) {
    .other-work-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px 20px;
    }

    .other-work-thumb {
        width: 100%;
        height: 48px;
        border-radius: 8px;
    }
}

/* ============ CASE STUDY PAGE ============ */
.page-casestudy {
    font-weight: 400;
}

/* -- Case Study Hero -- */
.cs-hero {
    padding: 140px 40px 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cs-hero-inner {
    max-width: 720px;
}

.cs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 32px;
}

.cs-back-link:hover {
    color: var(--azure);
}

.cs-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cs-hero-domain {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--azure);
}

.cs-hero-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
}

.cs-hero-title {
    font-family: var(--font-body);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cs-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy-light);
    margin-bottom: 16px;
    max-width: 600px;
}

.cs-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--mid-grey);
    margin-bottom: 32px;
}

.cs-read-time svg {
    width: 14px;
    height: 14px;
    color: var(--azure);
}

.cs-hero-purpose {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 28px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--light-grey);
}

.cs-purpose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.cs-purpose-item svg {
    flex-shrink: 0;
    color: var(--azure);
}

/* -- Case Study Layout (sidebar + article) -- */
.cs-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

/* -- Table of Contents -- */
.cs-toc {
    position: sticky;
    top: 100px;
    padding: 0;
}

.cs-toc-title {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--azure);
    margin-bottom: 16px;
}

.cs-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    counter-reset: toc;
}

.cs-toc-list li {
    counter-increment: toc;
}

.cs-toc-link {
    display: block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--mid-grey);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    line-height: 1.5;
}

.cs-toc-link:hover {
    color: var(--dark-grey);
}

.cs-toc-link.active {
    color: var(--navy);
    border-left-color: var(--azure);
    background: var(--iceberg-pale);
    border-radius: 0 6px 6px 0;
}

/* -- Article Content -- */
.cs-article {
    max-width: 720px;
    padding-bottom: 80px;
}

.cs-section {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.cs-section-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--iceberg);
}

.cs-subsection-title {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 16px;
}

.cs-article p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 20px;
}

.cs-article p strong {
    font-weight: 700;
    color: var(--navy);
}

.cs-article p em {
    font-style: italic;
}

/* -- Content Lists -- */
.cs-content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-content-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-grey);
}

.cs-content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--iceberg);
    border: 1.5px solid var(--azure);
}

/* -- Image Blocks -- */
.cs-image-block {
    margin: 28px 0;
}

.cs-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--light-grey);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-image-block img:hover {
    transform: scale(1.015);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* KPPS Specific Image Assignments */
img[src*="new-personas.jpg"] {
    width: auto !important;
    max-width: 400px;
    margin: 0 auto;
}

img[src*="new-process-map.jpg"] {
    width: auto !important;
    max-width: 40%;
    margin: 0 auto;
}

.cs-image-placeholder {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-grey) 100%);
    border: 1px dashed var(--light-grey);
    border-radius: 12px;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cs-image-placeholder span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
}

.cs-image-placeholder-wide {
    padding: 60px 40px;
}

.cs-image-caption {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid-grey);
    margin-top: 10px;
    font-style: italic;
}

/* Image grids: 2-up (default), 3-up, 4-up */
.cs-image-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.cs-image-group-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.cs-image-group-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.cs-image-group .cs-image-block {
    margin: 0;
}

.cs-image-small .cs-image-placeholder {
    padding: 48px 24px;
}

.cs-image-auto img {
    width: auto !important;
    max-width: 100%;
}

/* -- Lightbox Overlay -- */
.cs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px;
}

.cs-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.cs-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    object-fit: contain;
}

.cs-lightbox.active img {
    transform: scale(1);
}

.cs-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0;
}

.cs-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cs-lightbox-close svg {
    width: 18px;
    height: 18px;
}

/* -- Callout Boxes -- */
.cs-callout {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    margin: 28px 0;
    border: 1px solid;
}

.cs-callout-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-callout p {
    font-size: 14px !important;
    line-height: 1.7;
    margin-bottom: 0 !important;
}

.cs-callout ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.cs-callout ul li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.cs-callout ul li::before {
    content: '·';
    position: absolute;
    left: 4px;
    font-weight: 700;
}

/* Callout: Note (blue) */
.cs-callout-note {
    background: var(--iceberg-pale);
    border-color: var(--iceberg);
}

.cs-callout-note .cs-callout-icon {
    color: var(--azure);
}

.cs-callout-note p,
.cs-callout-note ul li {
    color: var(--dark-grey);
}

/* Callout: Problem (warm/red) */
.cs-callout-problem {
    background: #fef5ef;
    border-color: var(--peach);
}

.cs-callout-problem .cs-callout-icon {
    color: var(--tangerine);
}

.cs-callout-problem p,
.cs-callout-problem ul li {
    color: var(--dark-grey);
}

/* Callout: Positive (green) */
.cs-callout-positive {
    background: #f0faf4;
    border-color: #c8e6d4;
}

.cs-callout-positive .cs-callout-icon {
    color: #4caf50;
}

.cs-callout-positive p,
.cs-callout-positive ul li {
    color: var(--dark-grey);
}

/* -- Summary Grid -- */
.cs-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.cs-summary-card {
    padding: 28px;
    border-radius: 12px;
    border: 1px solid;
}

.cs-summary-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cs-summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-summary-card ul li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 6px;
}

.cs-summary-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.cs-summary-improve {
    background: #fef5ef;
    border-color: var(--peach);
}

.cs-summary-improve h3 {
    color: var(--tangerine);
}

.cs-summary-good {
    background: #f0faf4;
    border-color: #c8e6d4;
}

.cs-summary-good h3 {
    color: #4caf50;
}

/* -- Case Study End -- */
.cs-end {
    padding: 0 40px;
    max-width: var(--max-width);
    margin: 0 auto 40px;
}

.cs-end-inner {
    text-align: center;
    padding: 60px 40px;
    border-top: 2px solid var(--iceberg);
}

.cs-end-thanks {
    font-family: var(--font-brand);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--navy);
    margin-bottom: 8px;
}

.cs-end-author {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--mid-grey);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.cs-end-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cs-end-btn {
    margin: 0;
}

@media (max-width: 480px) {
    .cs-end-actions {
        flex-direction: column;
    }

    .cs-end-actions .btn-secondary,
    .cs-end-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* -- Case Study Responsive: Tablet -- */
@media (max-width: 1024px) {
    .cs-layout {
        grid-template-columns: 180px 1fr;
        gap: 40px;
    }
}

/* -- Case Study Responsive: Mobile -- */
@media (max-width: 768px) {
    .cs-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cs-toc {
        position: static;
        padding: 0 0 32px 0;
        margin-bottom: 32px;
        border-bottom: 1px solid var(--light-grey);
    }

    .cs-toc-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 0;
    }

    .cs-toc-link {
        border-left: none;
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .cs-toc-link.active {
        border-left-color: transparent;
        background: var(--iceberg-pale);
    }
}

@media (max-width: 640px) {
    .cs-hero {
        padding: 120px 20px 40px;
    }

    .cs-layout {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cs-image-group {
        grid-template-columns: 1fr;
    }

    .cs-image-group-3,
    .cs-image-group-4 {
        grid-template-columns: 1fr 1fr;
    }

    .cs-summary-grid {
        grid-template-columns: 1fr;
    }

    .cs-end {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cs-end-inner {
        padding: 40px 20px;
    }

    .cs-callout {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============ EMOJI STRIP ============ */
.emoji-strip-section {
    padding: 0;
    margin-top: 40px;
    width: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
    text-align: center;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.page-resume .emoji-strip-section {
    margin-top: 80px;
    margin-bottom: 10px;
}

.emoji-strip-section::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.emoji-strip-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0 10px;
}

.emoji-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

@media (max-width: 768px) {
    .emoji-strip-section {
        display: none;
    }
}