/* Satoshi Variable Font */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-VariableItalic.woff2') format('woff2');
    font-weight: 300 900;
    font-display: swap;
    font-style: italic;
}

:root {
    --color-bg: #F9F8F6;
    --color-surface: #FFFFFF;
    --color-text: #1C1C1C;
    --color-text-secondary: #626262;
    --color-accent: #505785;
    --color-accent-light: #ECEEF5;
    --color-accent-dark: #3D4266;
    --color-purple: #2D2A4A;
    --color-purple-light: #3D3960;
    --color-cream: #FFE17D;
    --color-cream-light: #FFF8E0;
    --color-sage: #B8CCC4;
    --color-sage-dark: #5C7D71;
    --color-coral: #E8998D;
    --color-coral-light: #FFF0ED;
    --color-border: #E8E6E3;
    --color-highlight: #FFF8E7;
    --color-highlight-border: #F5D779;
    --font-title: 'Satoshi', 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-sans: 'Satoshi', 'Plus Jakarta Sans', system-ui, sans-serif;
    --max-width: 880px;
    --spacing-section: clamp(72px, 10vw, 120px);
}

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

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

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle transitions for smooth resizing and interactions */
.container,
.option-card,
.image-block,
.hmw-box,
.stat-card,
.timeline-container,
.beyond-item,
.result-highlight,
.meta-grid,
.options-grid,
.stats-row,
.decision-content {
    transition: all 0.3s ease;
}

/* Smooth font size transitions for responsive typography */
h1, h2, h3, p {
    transition: font-size 0.3s ease;
}

/* Hover interactions */

/* Link transitions */
a {
    color: inherit;
    transition: color 0.2s ease, filter 0.15s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: currentColor;
}

a:hover,
a:focus {
    filter: brightness(0.7);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prevent horizontal scroll without breaking sticky */
.page-wrapper {
    overflow-x: clip;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
    letter-spacing: -0.025em;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--color-text);
    max-width: 62ch;
    font-size: 1rem;
    line-height: 1.65;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

section {
    padding: var(--spacing-section) 0;
}

/* Hero Section */
.hero {
    padding-top: clamp(60px, 10vw, 100px);
    padding-bottom: clamp(16px, 2vw, 20px);
    background: var(--color-bg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 56px;
        align-items: start;
    }
}

/* Stacked hero layout variant */
.hero-content-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .hero-content-stacked {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
}

.hero-content-stacked .hero-main {
    max-width: 720px;
}

.hero-content-stacked .hero-subtitle {
    max-width: 100%;
}

.meta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
}

@media (min-width: 600px) {
    .meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 32px 48px;
    }
}

@media (min-width: 900px) {
    .meta-row {
        gap: 32px 64px;
    }
}

.meta-row .meta-item {
    flex: 0 0 auto;
}

.meta-item-highlight .meta-value {
    color: var(--color-accent);
    font-weight: 600;
}

.hero-main {
    display: flex;
    flex-direction: column;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-surface);
    background: var(--color-accent);
    padding: 6px 12px 6px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-surface);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    padding-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
    color: var(--color-text-secondary);
    max-width: 520px;
    line-height: 1.6;
}

/* Hero Sidebar */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .hero-sidebar {
        padding-top: 48px;
    }
}

/* Full-width Hero Image */
.hero-image-section {
    background: var(--color-bg);
    padding: clamp(12px, 2vw, 20px) clamp(20px, 5vw, 40px);
    width: 100%;
}

.hero-image-section.secondary {
    background: var(--color-bg);
}

.hero-image-section > img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-image-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Hero video styling - no borders, fade at bottom */
.hero-image-placeholder .video-container {
    border: none !important;
    border-radius: 0;
    width: 100%;
    position: relative;
    outline: none;
    box-shadow: none;
    overflow: hidden;
}

.hero-image-placeholder video {
    border: none !important;
    outline: none;
    box-shadow: none;
}

.hero-image-placeholder .video-progress {
    display: none !important;
}

.hero-image-placeholder .video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to top, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 1;
}

.hero-image-placeholder .video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 1;
}

.hero-image-placeholder .video-fade-left,
.hero-image-placeholder .video-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    pointer-events: none;
    z-index: 1;
}

.hero-image-placeholder .video-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.hero-image-placeholder .video-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.hero-image-placeholder:has(.video-container) {
    background: none;
    border: none;
    aspect-ratio: auto;
}

/* Hero Scroll Container */
.hero-scroll-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-scroll-item {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
    --scroll-distance: 0px;
    animation: heroScroll var(--scroll-duration, 20s) linear infinite;
    transform: translateZ(0);
}

@keyframes heroScroll {
    0% {
        transform: translateY(0) translateZ(0);
    }
    100% {
        transform: translateY(var(--scroll-distance)) translateZ(0);
    }
}

.hero-scroll-track img {
    width: 100%;
    height: auto;
    display: block;
}

/* Result Highlight Card */
.result-highlight {
    background: var(--color-accent-light);
    border-radius: 12px;
    padding: 32px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-highlight-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    width: 100%;
}

.result-highlight-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 400;
    color: var(--color-accent-dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    width: 100%;
}

.result-highlight-desc {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.55;
    width: 100%;
}

/* Meta Grid - 2x2 layout */
.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.meta-value {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.4;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    background: var(--color-accent-light);
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Problem Section */
.problem-section {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.problem-header {
    margin-bottom: 32px;
}

.problem-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.problem-intro {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* Option Cards - v1 Style */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.option-card {
    position: relative;
}

.option-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.option-card p {
    font-size: 1rem;
    line-height: 1.65;
}

/* HMW Statement */
.hmw-box {
    background: var(--color-cream);
    border: none;
    border-radius: 12px;
    padding: 32px 36px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.hmw-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Responsibilities */
.responsibilities-intro {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 1rem;
    color: var(--color-text);
}

.responsibility-item::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
    margin-right: 10px;
}

/* Explorations Section */
.explorations-section {
    background: var(--color-accent-light);
    border-bottom: 1px solid var(--color-border);
}

.explorations-header {
    margin-bottom: 24px;
}

.explorations-header h2 {
    margin-bottom: 0;
}

.explorations-section .section-label {
    background: var(--color-accent);
    color: var(--color-surface);
}

.exploration-card {
    background: var(--color-surface) !important;
    border-color: var(--color-border) !important;
}

.exploration-card .image-placeholder {
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: 8px;
}

/* Explorations Image - extends beyond container like hmw-box */
.explorations-image-wrapper {
    margin-top: 32px;
    margin-left: -80px;
    margin-right: -80px;
    position: relative;
}

.explorations-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.explorations-image-wrapper .image-caption {
    margin-top: 16px;
}

@media (max-width: 1000px) {
    .explorations-image-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Key Decisions Section */
.decisions-section {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.decisions-intro {
    margin-bottom: 48px;
}

.decisions-intro h2 {
    margin-bottom: 16px;
}

.decisions-intro p {
    margin-bottom: 24px;
}

/*
.decisions-intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
    

@media (min-width: 700px) {
    .decisions-intro-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}
    */

.decisions-intro-focus {
    margin-top: 32px;
}

.decisions-intro-focus p {
    margin-bottom: 16px;
}

.decisions-intro-content .image-block {
    margin: 0;
}

.decisions-intro-image {
    display: flex;
    align-items: center;
}

.decisions-intro-image img {
    width: 100%;
    border-radius: 8px;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text);
}

.focus-item::before {
    content: '→';
    color: var(--color-accent);
    font-weight: 500;
}

/* Decision Block */
.decision-block {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
}

.decision-header {
    margin-bottom: 24px;
}

.decision-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.decision-title {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.decision-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.decision-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 600px) {
    .decision-row {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
}

.decision-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    padding-top: 3px;
}

.decision-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.65;
}

.decision-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.decision-row .image-block {
    margin: 16px 0 0 0;
}

@media (min-width: 600px) {
    .decision-row .image-block {
        grid-column: 2;
        margin: 0 0 0 0;
    }
}

/* Image Block */
.image-block {
    margin: 32px 0;
    background: var(--color-surface);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: visible;
}

.image-block.exploration {
    background: var(--color-bg);
    border: 1px dashed #D0CCC5;
    box-shadow: none;
}

.image-block.wide {
    margin-left: -80px;
    margin-right: -80px;
}

@media (max-width: 1000px) {
    .image-block.wide {
        margin-left: 0;
        margin-right: 0;
    }
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.image-block.exploration img {
    opacity: 0.85;
}

.video-container {
    position: relative;
    border: 1px solid rgba(232, 225, 243, 0.85);
    border-radius: 4px;
    overflow: hidden;
}

.video-container.no-border {
    border: none;
}

.video-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: rgba(232, 225, 243, 0.85);
    width: 0%;
    z-index: 10;
}

.image-block video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-placeholder video {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    background: var(--color-surface);
    border-radius: 6px;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 0.8125rem;
    border: 1px dashed var(--color-border);
    text-align: center;
    padding: 20px;
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 12px;
    max-width: 100%;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-accent-dark) 100%);
    color: white;
}

.impact-section .section-label {
    color: white;
    background: rgba(255,255,255,0.15);
}

.impact-section h2 {
    color: white;
}

.impact-section p {
    color: rgba(255,255,255,0.85);
}

.impact-header {
    margin-bottom: 40px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.stat-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
}

/* Large stat card for single prominent metric */
.stat-card-large {
    text-align: center;
    padding: 40px 48px;
}

.stat-card-large .stat-value {
    font-size: clamp(3rem, 8vw, 4.5rem);
    margin-bottom: 12px;
}

.stat-card-large .stat-label {
    font-size: 1.125rem;
}

/* Timeline */
.timeline-container {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-left: -80px;
    margin-right: -80px;
}

@media (max-width: 1000px) {
    .timeline-container {
        margin-left: 0;
        margin-right: 0;
    }
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

@media (min-width: 1000px) {
    .timeline {
        flex-direction: row;
        gap: 12px 24px;
        align-items: center;
    }

    .timeline-item {
        text-align: left;
    }
}

.timeline-date {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-event {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.timeline-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transform: rotate(90deg);
    padding: 4px 0;
}

@media (min-width: 1000px) {
    .timeline-arrow {
        transform: rotate(0deg);
        padding: 0;
    }
}

/* Quote */
.impact-quote {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: clamp(24px, 4vw, 36px);
    margin-top: 40px;
    border-left: 4px solid var(--color-sage);
}

.impact-quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 400;
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin-bottom: 12px;
}

.impact-quote cite {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}

/* Impact Image Block */
.impact-image-block {
    margin-top: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.impact-image-placeholder {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
}

.impact-image-block img {
    width: 100%;
    border-radius: 8px;
}

/* Beyond MVP Section */
.beyond-section {
    background: var(--color-bg);
    padding-bottom: clamp(10px, 2vw, 20px);
}

.beyond-header {
    margin-bottom: 40px;
}

.beyond-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.beyond-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
}

@media (max-width: 480px) {
    .beyond-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.beyond-number {
    width: 40px;
    height: 40px;
    background: var(--color-sage-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.beyond-item:nth-child(2) .beyond-number {
    background: var(--color-coral);
}

.beyond-item:nth-child(3) .beyond-number {
    background: var(--color-accent);
}

.beyond-content h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.beyond-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
}

/* Learnings Section */
.learnings-section {
    background: var(--color-bg);
    border-top: none;
}

.deep-dive .learnings-section {
    padding-top: clamp(20px, 4vw, 40px);
}

.learnings-header {
    margin-bottom: 40px;
}

.learning-item {
    margin-bottom: 40px;
}

.learning-item h4 {
    margin-bottom: 16px;
}

.learning-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

@media (min-width: 600px) {
    .learning-row {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
}

.learning-row:last-child {
    margin-bottom: 0;
}

.learning-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.learning-row p {
    margin: 0;
    color: var(--color-text);
}

/* Project Footer Navigation */
.project-footer-nav {
    background: var(--color-purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(40px, 6vw, 48px) clamp(24px, 5vw, 60px);
}

.project-footer-nav a {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.project-footer-nav a:hover {
    color: #FFFFFF;
}

.project-footer-nav .next-project {
    margin-left: auto;
}

@media (max-width: 600px) {
    .project-footer-nav a {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--color-sage-dark);
    text-align: center;
}

footer p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin: 0 auto;
}

/* Fade In Animation */
@media (prefers-reduced-motion: no-preference) {
    .hero, section {
        animation: fadeIn 0.7s ease-out both;
    }

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-secondary);
}

/* Table of Contents */
.toc {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.toc-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.toc-link.active {
    opacity: 1;
    color: var(--color-accent);
}

/* Special styling when Impact section is active (dark background) */
.toc-link.active.on-dark {
    color: white;
}

.toc-link.active.on-dark .toc-indicator {
    background: white;
}

/* Lighter hover color for non-active links when in dark sections */
.toc-link.on-dark:not(.active):hover {
    color: rgba(255, 255, 255, 0.85);
}

.toc-link.on-dark:not(.active):hover .toc-indicator {
    background: rgba(255, 255, 255, 0.7);
}

.toc-indicator {
    width: 3px;
    height: 24px;
    background: var(--color-border);
    border-radius: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toc-link.active .toc-indicator {
    background: var(--color-accent);
    height: 32px;
}

.toc-link:hover .toc-indicator {
    background: var(--color-accent);
}

.toc-label {
    opacity: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toc-link.active .toc-label {
    opacity: 1;
}

/* Hide TOC on smaller screens */
@media (max-width: 1200px) {
    .toc {
        display: none;
    }
}

/* Mobile Scroll Indicator */
.mobile-toc {
    display: none;
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

@media (max-width: 1200px) {
    .mobile-toc {
        display: flex;
    }
}

@media (max-width: 600px) {
    .mobile-toc {
        left: 8px;
    }
}

.mobile-toc-indicator {
    width: 4px;
    height: 16px;
    background: var(--color-border);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-toc-indicator.active {
    background: var(--color-accent);
    height: 24px;
}

.mobile-toc-indicator.on-dark {
    background: white;
}

/* Expanded menu on hover */
.mobile-toc-menu {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    min-width: 200px;
}

.mobile-toc:hover .mobile-toc-menu,
.mobile-toc.expanded .mobile-toc-menu {
    opacity: 1;
    visibility: visible;
    left: 12px;
}

.mobile-toc:hover .mobile-toc-indicators,
.mobile-toc.expanded .mobile-toc-indicators {
    opacity: 0;
}

.mobile-toc-indicators {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: opacity 0.25s ease;
}

.mobile-toc-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-toc-menu-item:hover {
    color: var(--color-text);
}

.mobile-toc-menu-item.active {
    color: var(--color-accent);
}

.mobile-toc-menu-line {
    width: 2px;
    height: 16px;
    background: var(--color-border);
    border-radius: 1px;
    flex-shrink: 0;
}

.mobile-toc-menu-item.active .mobile-toc-menu-line {
    background: var(--color-accent);
}

/* ========== INTRO SECTION ========== */

.intro-section {
    height: 80vh;
    max-height: 100vh;
    width: 100vw;
    background: #F2EFE9;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

/* Lava Lamp Background Effect - Single Yellow Blob */
.lava-lamp-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.lava-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(232, 225, 243, 0.8) 0%, transparent 80%);
    width: 80vw;
    height: 80vw;
    top: -10%;
    left: -10%;
    animation: lavaFloat 8s ease-in-out infinite;
}

@keyframes lavaFloat {
    0% { transform: translate(0, 0); }
    25% { transform: translate(25vw, 15vh); }
    50% { transform: translate(10vw, 30vh); }
    75% { transform: translate(30vw, 10vh); }
    100% { transform: translate(0, 0); }
}

/* Dark mode blob */
.intro-section.hovering-designer .lava-blob,
.intro-section.hovering-enthusiast .lava-blob {
    opacity: 0.25;
    background: radial-gradient(circle, rgba(180, 160, 100, 0.5) 0%, transparent 60%);
}

/* Pause animation when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lava-blob {
        animation: none;
    }
}

/* Ensure content stays above blobs */
.intro-content {
    position: relative;
    z-index: 1;
}

/* Navigation */
.intro-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px clamp(24px, 5vw, 48px);
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 12px;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    background: rgba(242, 239, 233, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.15s ease-out;
}

/* Mobile menu content inside nav - hidden by default */
.mobile-menu-content {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}



/* Extend nav bar above viewport to prevent gap when scrolling */
.intro-nav::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    backdrop-filter: inherit;
    -webkit-backdrop-filter: inherit;
}

.nav-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.6;
    filter: none;
}

.nav-separator {
    color: var(--color-accent);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.mobile-menu-logo img {
    height: 28px;
    width: auto;
    display: block;
}

/* Main Content Container */
.intro-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 clamp(40px, 8vw, 80px);
}

/* Heading */
.intro-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-text);
    text-align: left;
    margin: 0;
    max-width: 56%;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 20;
}

/* Custom Emoji Cursors */
.emoji-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 32px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.emoji-cursor.visible {
    opacity: 1;
}

/* Interactive Text */
.interactive-text {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    color: var(--color-accent);
    cursor: pointer;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
    position: relative;
    z-index: 25;
}

.interactive-text:hover {
    cursor: none;
}

.interactive-text.designer {
    color: #505785;
    text-decoration-color: #505785;
}

.interactive-text.enthusiast {
    color: #505785;
    text-decoration-color: #505785;
}

/* Hover state colors */
.intro-section.hovering-designer .interactive-text.designer {
    color: #FFE17D !important;
    text-decoration-color: #FFE17D !important;
}

.intro-section.hovering-enthusiast .interactive-text.enthusiast {
    color: #FFE17D !important;
    text-decoration-color: #FFE17D !important;
}

/* Dim non-hovered text */
.intro-heading {
    color: var(--color-text);
}

.intro-section.hovering-designer .intro-heading,
.intro-section.hovering-enthusiast .intro-heading {
    color: rgba(0, 0, 0, 0.4);
}

.intro-section.hovering-designer .interactive-text.designer,
.intro-section.hovering-enthusiast .interactive-text.enthusiast {
    opacity: 1;
}

/* Background color changes on hover */
.intro-section.hovering-designer,
.intro-section.hovering-enthusiast {
    background: #3D4266;
}

/* Designer Content (Gray Box) */
.designer-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
}

.intro-section.hovering-designer .designer-content {
    opacity: 1;
    visibility: visible;
}

.designer-box {
    width: clamp(200px, 22vw, 320px);
    height: auto;
}

.designer-box img {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Enthusiast Content (Scrolling List) */
.enthusiast-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.intro-section.hovering-enthusiast .enthusiast-content {
    opacity: 1;
    visibility: visible;
}

.scroll-container {
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

.scroll-text {
    display: flex;
    flex-direction: column;
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.scroll-item {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-family: var(--font-title);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    padding: clamp(12px, 2vh, 20px) 0;
    white-space: nowrap;
}

/* Description Paragraphs */
.intro-description {
    bottom: clamp(40px, 6vh, 80px);
    left: 0;
    right: 0;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 50;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.intro-section.hovering-enthusiast .intro-description {
    opacity: 0;
    visibility: hidden;
}

.intro-description p {
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    max-width: none;
    transition: color 0.4s ease;
}

.intro-section.hovering-designer .intro-description p {
    color: rgba(255, 255, 255, 0.9);
}

.intro-description strong {
    font-weight: 600;
}

/* Shimmer Effect for Designer Hover */
.emoji {
    display: inline-block;
}

.shimmer-text {
    position: relative;
    display: inline;
}

.intro-section.hovering-designer .shimmer-text {
    background: linear-gradient(
        90deg,
        rgba(255, 225, 125, 1) 0%,
        rgba(255, 225, 125, 1) 35%,
        rgb(234, 220, 174) 50%,
        rgba(255, 225, 125, 1) 65%,
        rgba(255, 225, 125, 1) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

.intro-section.hovering-designer .emoji {
    color: rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: initial;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Layout - Mobile/Tablet */
@media (max-width: 768px) {
    .intro-content {
        justify-content: flex-start;
    }

    .intro-heading {
        padding-top: clamp(80px, 12vh, 100px);
        text-align: left;
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Position designer box between title and descriptions */
    .designer-content {
        position: fixed;
        top: 55%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        opacity:.6;
    }

    .designer-box {
        width: clamp(160px, 45vw, 240px);
        height: auto;
    }

    /* Position enthusiast scroll below title, 50vh height */
    .enthusiast-content {
        position: fixed;
        top: clamp(260px, 48vh, 280px);
        bottom: auto;
        left: 0;
        right: 0;
        height: 50vh;
        max-width: 100%;
        transform: none;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .intro-section.hovering-enthusiast .enthusiast-content {
        height: 50vh;
        max-height: 50vh;
    }

    .scroll-container {
        height: 100%;
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        );
    }

    .scroll-item {
        font-size: clamp(1rem, 5vw, 1.5rem);
        text-align: center;
    }

    .intro-description {
        position: absolute;
        bottom: clamp(40px, 6vh, 80px);
        left: clamp(40px, 8vw, 80px);
        right: clamp(40px, 8vw, 80px);
    }

    .intro-description p {
        max-width: 100%;
    }

    .intro-nav {
        font-size: 0.8125rem;
        gap: 8px;
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* 2-line to X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.hamburger.active span {
    var(--color-accent);
}

/* Old mobile menu panel - hidden, using nav expansion instead */
.mobile-menu {
    display: none;
}

.mobile-menu-link {
    font-size: 1.25rem;
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--color-accent);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: opacity 0.2s ease;
    text-align: center;
    width: 100%;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .intro-heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
        padding-top: clamp(100px, 15vh, 100px);
    }

    /* Hide desktop nav links on mobile */
    .intro-nav .nav-link,
    .intro-nav .nav-separator {
        display: none;
    }

    .intro-nav {
        padding: 12px 20px;
        justify-content: space-between;
        max-height: 56px;
        overflow: hidden;
        transition: transform 0.15s ease-out, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
    }

    .nav-logo {
        margin-right: 0;
    }

    /* Expanded nav state on mobile */
    .intro-nav.active {
        max-height: 50vh;
         background: rgba(242, 239, 233, 0.65);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.15s ease-out;
    }

    /* Show mobile menu content when expanded */
    .intro-nav.active .mobile-menu-content {
        display: flex;
        opacity: 1;
    }

    /* Hamburger button */
    .hamburger {
        display: flex;
    }
}

/* ========== PAST WORK BANNER ========== */

.past-work-banner {
    width: 100%;
    background: rgba(242, 239, 233, 0.65);
    padding: clamp(16px, 2.5vw, 24px) clamp(40px, 8vw, 80px);
}

.past-work-label {
    /* font-family: var(--font-title); */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
}

/* ========== SELECTED WORK SECTION ========== */

.work-section {
    padding: 0 0 0 0;
    background: var(--color-bg);
}

.work-row {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    min-height: 280px;
    padding: clamp(28px, 4vw, 40px) clamp(40px, 8vw, 80px);
    border-top: 1px solid rgba(80, 87, 133, 0.2);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.work-row:hover {
    filter: none;
}

/* Title */
.work-row-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Description - always visible */
.work-row-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Tags & CTA swap container — overlays both in the same space */
.work-row-swap {
    display: grid;
    margin-top: 16px;
    overflow: hidden;
}

.work-row-swap > * {
    grid-area: 1 / 1;
    align-self: start;
}

/* Tags - visible by default, slides down to exit */
.work-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-surface);
    background: var(--color-accent);
    padding: 4px 12px;
    border-radius: 20px;
}

/* CTA - hidden above, slides down to enter */
.work-row-cta {
    display: flex;
    align-items: center;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0;
    min-height: 100%;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-row:hover .work-row-tags {
    opacity: 0;
    transform: translateY(100%);
}

.work-row:hover .work-row-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Video / media placeholder */
.work-row-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.work-row-media .video-container {
    width: 100%;
    border: none;
    border-radius: 0;
}

.work-row-media .video-progress {
    display: none;
}

.work-row-media video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
    .work-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-row-media {
        order: -1;
    }
}

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

.home-footer {
    padding: 32px 0;
    background: var(--color-purple);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.home-footer p {
    font-size: 0.8125rem;
    color: var(--color-accent-light);
    margin: 0 auto;
    max-width: none;
}
