/* ========================================
   ZHUONA Portfolio — Style
   Design: Dusty Pink × Charcoal × Light Pink
   Notes App Chic Aesthetic
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-bg: #FDF9F9;
    --color-bg-alt: #F9F0F1;
    --color-surface: #FFFFFF;
    --color-text: #F5EDF0;
    --color-text-secondary: #D0C4C6;
    --color-text-muted: #B0A5A8;

    /* Dusty Pink palette */
    --color-pink-light: #F0E0E2;
    --color-pink: #D4B5B6;
    --color-pink-mid: #C4A1A3;
    --color-pink-deep: #D4B5B6;
    --color-pink-dark: #E0CCCE;

    /* Accent / Charcoal */
    --color-charcoal: #FBF5F5;
    --color-charcoal-light: #E8DCDE;

    /* Functional */
    --color-border: rgba(237, 224, 226, 0.25);
    --shadow-sm: 0 1px 3px rgba(60, 30, 35, 0.06);
    --shadow-md: 0 4px 16px rgba(60, 30, 35, 0.08);
    --shadow-lg: 0 8px 32px rgba(60, 30, 35, 0.10);

    /* Typography */
    --font-display: 'Playfair Display', 'Noto Serif SC', serif;
    --font-body: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;

    --max-width: 1200px;
    --nav-height: 72px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background-color: #2D2025;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: transparent;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 249, 249, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(237, 224, 226, 0.25);
    transition: all 0.3s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(253, 249, 249, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: 100%;
    padding: 0 1rem 0 2rem;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #FBF5F5;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    letter-spacing: 0.06em;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-pink);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: #FBF5F5;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #FBF5F5;
    transition: all 0.3s var(--ease-out);
    border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 2rem;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
    flex: 1 1 55%;
    max-width: 680px;
    min-width: 0;
}

.hero-card {
    position: relative;
    z-index: 2;
    flex: 0 0 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3rem;
}

.hero-greeting {
    font-size: 1.05rem;
    color: var(--color-pink);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 0.15em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-subtitle-cn {
    color: var(--color-pink);
    font-style: italic;
}

.hero-subtitle-en {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    border: none;
}

.btn-primary {
    background: var(--color-pink-mid);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--color-pink-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero decorative shapes */
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    top: -15%;
    right: -5%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-pink-light) 0%, transparent 70%);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-secondary {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-pink-light) 0%, transparent 70%);
    opacity: 0.15;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

/* ---------- Split-Screen Portfolio ---------- */
.module-section {
    padding: 0 2rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

/* ── Split Layout ── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: start;
}

/* 3-column variant for Travel module */
.split-layout--travel {
    grid-template-columns: 280px 1fr 300px;
    gap: 2.5rem;
}

/* ── Left: Showcase ── */
.split-left {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding-top: 1rem;
}

/* ── Mid: Text blocks (Challenge / Approach / Impact) ── */
.split-mid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
}

.cai-block {}
.cai-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-pink);
    margin-bottom: 0.6rem;
}
.cai-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.cai-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
}
.cai-text .hl {
    color: #FBF5F5;
    font-weight: 500;
}

/* ── Fan-out Card Stack ── */
.fanout-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.fanout-card {
    position: absolute;
    width: 42%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    cursor: default;
    pointer-events: none;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform:
        rotate(var(--rot))
        translate(var(--x), var(--y))
        scale(1);
    z-index: var(--z);
    transition:
        transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease,
        z-index 0.55s step-end;
    will-change: transform;
}

/* Cycle animation */
.fanout-card.cycle-out {
    transform:
        rotate(calc(var(--rot) + 3deg))
        translate(calc(var(--x) + 20px), calc(var(--y) - 30px))
        scale(0.85) !important;
    opacity: 0.3 !important;
    filter: brightness(0.4);
    z-index: 0 !important;
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease,
        filter 0.5s ease,
        z-index 0s step-end;
}

.fanout-card.cycle-in {
    transform:
        rotate(0deg)
        translate(0, 0)
        scale(1) !important;
    z-index: 3 !important;
    filter: brightness(1.1);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 20px 60px rgba(180, 140, 150, 0.15);
    transition:
        transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease,
        z-index 0s step-start;
}

/* Click hit areas */
.fanout-hit {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 20;
    cursor: pointer;
}
.fanout-hit.left  { left: 0; }
.fanout-hit.right { right: 0; }

.fanout-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: #FBF5F5;
    letter-spacing: -0.02em;
    line-height: 1;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fanout-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

/* ── Fanout image variant ── */
.fanout-stack--images .fanout-card {
    width: 38%;
    aspect-ratio: 3 / 4;
    height: auto;
    border-radius: 10px;
}
.fanout-card--img {
    background: none !important;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    display: block;
}
.fanout-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fanout-card--img:hover img {
    transform: scale(1.08);
}

/* Keep original si-* for Amplification module (unchanged) */
.showcase-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    position: relative;
}

.si-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.si-label {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.06em;
}

.si-bjiff    { background: linear-gradient(160deg, #3A2A30, #2A1E24 40%, #1A1518); }
.si-soysauce { background: linear-gradient(160deg, #2A2830, #1E1C24 40%, #151318); }
.si-ningmeng { background: linear-gradient(160deg, #302830, #221C24 40%, #181418); }
.si-weibo    { background: linear-gradient(160deg, #2A3035, #1E2228 40%, #15181A); }
.si-cannes   { background: linear-gradient(160deg, #302A35, #221E28 40%, #181418); }

/* Showcase body */
.showcase-body .project-org {
    font-size: 0.72rem;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.showcase-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.showcase-body p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 620px;
}


/* ── Right: Sticky Sidebar ── */
.split-right {
    position: sticky;
    top: calc(var(--nav-height) + 3rem);
    align-self: start;
}

.sticky-panel {
    background: rgba(45, 32, 37, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Grain texture overlay */
.sticky-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.panel-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.04);
    line-height: 0.7;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 1rem;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: #FBF5F5;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.panel-sub {
    font-size: 0.85rem;
    color: var(--color-pink);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Panel Nav Links ── */
.panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.panel-link {
    display: block;
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    color: var(--color-text-secondary);
    text-decoration: none;
    position: relative;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
}

.panel-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-pink);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.35s var(--ease-out);
}

.panel-link.active::before {
    transform: scaleY(1);
}

.panel-link:hover {
    color: #FBF5F5;
    background: rgba(255, 255, 255, 0.03);
}

.panel-link.active {
    color: #FBF5F5;
    background: rgba(255, 255, 255, 0.05);
}

.panel-link-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
    transition: color 0.35s var(--ease-out);
}

.panel-link:hover .panel-link-sub,
.panel-link.active .panel-link-sub {
    color: var(--color-pink);
}

/* Sub-link (工作拆解) */
.panel-sub-link {
    padding-left: 2rem;
    font-size: 0.82rem;
}
.panel-sub-link::before {
    left: 1.25rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.panel-sub-link .panel-link-sub {
    font-size: 0.68rem;
}

/* Showcase card: hide by default, show when active (tab-switch modules) */
.showcase-card {
    display: none;
}
.showcase-card.active {
    display: block;
    animation: fadeSlideIn 0.45s var(--ease-out);
}

/* Scroll-mode: all cards visible (Travel module) */
.split-left--scroll .showcase-card {
    display: block;
    scroll-margin-top: calc(var(--nav-height) + 2rem);
}

/* ── Showcase View toggle ── */
.showcase-view {
    display: none;
}
.showcase-view.active {
    display: block;
    animation: fadeSlideIn 0.4s var(--ease-out);
}

/* ── 工作拆解 Section ── */
.cai-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cai-section-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.cai-section .cai-block {
    margin-bottom: 3rem;
}
.cai-section .cai-block:last-child {
    margin-bottom: 0;
}

.showcase-view .cai-block {
    margin-bottom: 3rem;
}
.showcase-view .cai-block:last-child {
    margin-bottom: 0;
}

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

.showcase-org {
    font-size: 0.68rem;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.showcase-title-sm {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 1rem;
}

/* ── CAI Text Groups ── */
.cai-group {
    display: none;
}
.cai-group.active {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeSlideIn 0.45s var(--ease-out);
}

.showcase-metrics {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Metric (shared) ── */
.metric {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #FBF5F5;
    letter-spacing: -0.01em;
    line-height: 1;
}
.metric small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

/* ── Irregular Media Grid (Make It Grow) ── */
.media-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
}

.media-grid .mg-top {
    grid-column: 2 / 4;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-grid .mg-sq {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-grid .mg-video {
    grid-row: span 2;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 181, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.media-grid .mg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-grid .mg-video::after {
    content: '▶';
    position: absolute;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.media-grid .mg-video:hover::after {
    color: #fff;
    transform: scale(1.2);
}

.media-grid .mg-video.playing::after {
    opacity: 0;
}

.media-grid .mg-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.15);
}

.media-grid img,
.media-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Media grid responsive */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .media-grid .mg-top {
        grid-column: 1 / -1;
    }
    .media-grid .mg-video {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .media-grid .mg-top {
        grid-column: 1 / -1;
    }
}

/* ── Timeline Strip (Make It Real) ── */
.timeline-strip {
    position: relative;
    width: 100%;
    padding: 2rem 0 3rem;
    margin-bottom: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 22%;
    padding: 0 0.75rem;
}

.timeline-node.top {
    margin-top: 0;
}
.timeline-node.bottom {
    margin-top: 5.5rem;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-pink);
    border: 2px solid rgba(45, 32, 37, 0.8);
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tl-img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
}

.tl-img span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.2);
}

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

/* ── Timeline image lightbox ── */
.tl-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background 0.35s ease;
}

.tl-overlay.active {
    background: rgba(0, 0, 0, 0.85);
    pointer-events: auto;
}

.tl-overlay-img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tl-overlay.active .tl-overlay-img {
    transform: scale(1);
}

.timeline-node:hover .tl-img {
    border-color: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(180, 140, 150, 0.12);
}

.tl-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: #FBF5F5;
    letter-spacing: 0.02em;
}

.tl-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

/* ── Editorial Stack (Film) ── */
/* ========================================
   Film Grid — simple 2×2 layout
   ======================================== */
.film-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.film-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1518;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: border-color 0.35s ease, transform 0.35s ease;
}
.film-card:hover {
    border-color: rgba(212, 181, 182, 0.3);
    transform: translateY(-4px);
}

.film-card-cover {
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.film-card-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.film-card-cover::after {
    content: '▶';
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    transition: color 0.3s ease;
}
.film-card:hover .film-card-cover::after {
    color: rgba(212, 181, 182, 0.5);
}
.film-card-cover:has(video) {
    background: #000;
}

.film-card-info {
    padding: 1.25rem;
}
.film-card-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}
.film-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: #FBF5F5;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}
.film-card-tag {
    font-size: 0.8rem;
    color: var(--color-pink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Film detail overlay ── */
.film-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.film-detail-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.film-detail-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.film-detail-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.film-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    width: min(1000px, 90vw);
    max-height: 85vh;
    padding: 2rem;
}

.film-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}
.film-detail-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.04);
    line-height: 0.8;
    margin-bottom: 0.25rem;
}
.film-detail-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: #FBF5F5;
    letter-spacing: 0.04em;
}
.film-detail-tag {
    font-size: 0.85rem;
    color: var(--color-pink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.film-detail-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: 0.5rem;
}

.film-detail-media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.film-detail-media::after {
    content: '视频预留位';
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.06em;
}
.film-detail-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.film-detail-overlay.ratio-43 .film-detail-media {
    aspect-ratio: 4 / 3;
}
.film-detail-media:has(video) {
    border: none;
    background: #000;
}
.film-detail-media:has(video)::after {
    display: none;
}

/* ── Film responsive ── */
@media (max-width: 1024px) {
    .film-detail-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .film-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .film-detail-text h3 {
        font-size: 1.4rem;
    }
    .film-detail-num {
        font-size: 2.5rem;
    }
}

/* Video fullscreen lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.video-lightbox video {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-lightbox-btn {
    margin-top: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
}

.video-lightbox-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.video-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    line-height: 1;
}

.video-lightbox-close:hover {
    color: #fff;
}

/* ── Timeline responsive ── */
@media (max-width: 768px) {
    .timeline-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    .timeline-line {
        display: none;
    }
    .timeline-node {
        width: 42%;
    }
    .timeline-node.bottom {
        margin-top: 0;
    }
    .tl-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .timeline-node {
        width: 44%;
    }
    .tl-img {
        width: 70px;
        height: 70px;
    }
    .tl-label {
        font-size: 0.8rem;
    }
    .tl-desc {
        font-size: 0.65rem;
    }
}

/* ── Fanout responsive ── */
@media (max-width: 768px) {
    .fanout-card {
        width: 50%;
    }
    .fanout-num {
        font-size: 1.4rem;
    }
    .fanout-tag {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .fanout-card {
        width: 58%;
        border-radius: 12px;
    }
    .fanout-num {
        font-size: 1.2rem;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr 280px;
        gap: 2.5rem;
    }
    .split-layout--travel {
        grid-template-columns: 220px 1fr 260px;
        gap: 2rem;
    }
    .split-left {
        gap: 6rem;
    }
    .sticky-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .split-layout--travel {
        grid-template-columns: 1fr;
    }
    .split-right {
        position: static;
        order: -1;
    }
    .split-mid {
        order: 0;
    }
    .split-left {
        gap: 4rem;
        padding-top: 0;
    }
    .sticky-panel {
        padding: 1.75rem;
    }
    .panel-title {
        font-size: 1.5rem;
    }
    .panel-num {
        font-size: 3.5rem;
    }
    .module-section {
        margin-bottom: 5rem;
    }
    .showcase-body h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .module-section {
        padding: 0 1rem;
    }
    .split-left {
        gap: 3rem;
    }
    .sticky-panel {
        padding: 1.5rem;
    }
    .showcase-metrics {
        gap: 1rem;
    }
    .metric {
        font-size: 1.15rem;
    }
}

/* ---------- Film ---------- */
.film {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* ---------- Insights ---------- */
.insights {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.insights-waterfall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--color-pink);
}

.insight-card--offset {
    margin-top: 3rem;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.insight-date {
    font-size: 0.8rem;
    color: var(--color-pink);
    letter-spacing: 0.05em;
}

.insight-tag {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
}

.insight-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 0.75rem;
    line-height: 1.45;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.insight-link {
    font-size: 0.85rem;
    color: var(--color-pink);
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.insight-link:hover {
    color: #FBF5F5;
    padding-left: 0.3rem;
}

.insight-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.insight-subtitle {
    font-size: 0.85rem !important;
    color: var(--color-pink) !important;
    font-style: italic;
    margin-bottom: 0.75rem !important;
}

/* Hide full article on card — only shown in overlay */
.insight-full {
    display: none;
}

/* ── Insight reading overlay ── */
.insight-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.insight-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.insight-overlay-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.insight-overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.insight-overlay-content {
    width: min(720px, 90vw);
    max-height: 85vh;
    overflow-y: auto;
    padding: 1rem;
}
.insight-overlay-content .insight-meta {
    margin-bottom: 1.5rem;
}
.insight-overlay-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.insight-overlay-content .insight-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
}
.insight-overlay-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 2;
    margin-bottom: 1.25rem;
}
.insight-overlay-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: #FBF5F5;
    margin-bottom: 0.5rem;
}

.insight-overlay-content p:last-child {
    margin-bottom: 0;
}

.insight-figure {
    margin: 1.5rem auto;
    border-radius: 12px;
    overflow: hidden;
    max-width: 65%;
}
.insight-figure img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .insight-figure {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .insight-overlay-content h3 {
        font-size: 1.5rem;
    }
    .insight-overlay-content {
        width: 95vw;
        padding: 0.5rem;
    }
}

/* ---------- About ---------- */
.about {
    padding: 6rem 2rem;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 181, 182, 0.3), rgba(196, 161, 163, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-avatar::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 181, 182, 0.3);
    opacity: 0.6;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-title {
    text-align: left;
}

.contact .section-title,
.contact .section-subtitle {
    text-align: left;
}

.about-intro {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-pink-dark);
    margin: 1.25rem 0 1.5rem;
    line-height: 1.6;
}

.about-text {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.97rem;
    line-height: 1.85;
}

.about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.service-icon {
    color: var(--color-pink-mid);
    font-size: 0.7rem;
}

/* ---------- Contact ---------- */
.contact {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
    backdrop-filter: none;
}

.contact .section-title,
.contact .section-subtitle {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    transition: color 0.3s var(--ease-out);
}

.contact-item a:hover {
    color: var(--color-pink-mid);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.social-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-pink-light);
}

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

/* Form */
.contact-form {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(2px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(237, 224, 226, 0.3);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: rgba(253, 249, 249, 0.35);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(212, 181, 182, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

/* ---------- Footer ---------- */
.footer {
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--color-border);
    background: transparent;
    backdrop-filter: none;
    position: relative;
    z-index: 1;
}

.footer-container p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-tagline {
    margin-top: 0.35rem;
    font-style: italic;
    color: var(--color-pink-dark);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s var(--ease-out) forwards;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .about-services {
        justify-content: flex-start;
    }

    .about-avatar {
        width: 220px;
        height: 220px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 2rem 3rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s var(--ease-out);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }





    .insights-waterfall {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-card--offset {
        margin-top: 0;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: calc(var(--nav-height) + 1rem) 1.5rem 3rem;
    }

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

    .hero-card {
        flex: 0 0 auto;
        width: 260px;
        height: 260px;
    }

    #tilted-card-container {
        width: 260px;
        height: 260px;
    }

    .hero-name {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-shape {
        width: 250px;
        height: 250px;
    }

    .hero-shape-secondary {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        width: 220px;
        height: 220px;
    }

    #tilted-card-container {
        width: 220px;
        height: 220px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }




    .insights-waterfall {
        grid-template-columns: 1fr;
    }

    .insight-card--offset {
        margin-top: 0;
    }

    .work-card-info {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-services {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
